/* */
.top-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
}

.center-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-grow: 1;
}

.center-area img {
  width: 100%;
}

.center-area-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.center-area-list a {
  display: block;
}

@media screen and (min-width: 768px) {
  .top-bar {
    flex-direction: row;
    justify-content: space-around;
  }

  .center-area {
    flex-direction: row;
    justify-content: space-evenly;
  }

  .center-area img {
    max-width: 50%;
  }
}

@media screen and (min-width: 1440px) {
  .center-area img {
    max-width: 25%;
  }
}