body {
  font-family: sans-serif !important;
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.page-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  padding-bottom: 10%;
}

.header {
  margin-top: -4rem;

  .logo {
    width: 200px;
    height: 200px;
  }
}

.flag-container {
  margin-top: -4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding: 1rem;
}

.flag-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  width: 150px;
  text-align: center;
  transition: transform 0.2s ease;

  p {
    white-space: nowrap;
  }

  img {
    color: #000;
    border-radius: 16px;
    width: 32px;
    height: 32px;
    border: solid 2px white;
    filter: brightness(0.95);
  }
}

.flag-link {
  text-decoration: none;
  color: inherit;
}

.flag-box:hover {
  transform: scale(1.05);
}

@media screen and (min-width: 420px) {
  .header {
    margin-top: -8rem;

    .logo {
      width: 400px;
      height: 400px;
    }
  }

  .flag-container {
    margin-top: -8rem;
  }
}
