@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #2b2d42;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

p {
  font-size: white;
}

#container {
  width: 100%;
  max-width: 550px;
  height: 65vh;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  padding: 0 20px;
}

#logo {
  & img {
    width: 100%;
    margin-bottom: 1rem;
  }
  & h1 {
    color: white;
    font-size: 1.2rem;
    font-weight: normal;
  }
  & p {
    opacity: 0.5;
  }
  & p,
  & a {
    color: white;
    font-size: 0.8rem;
    margin: 2rem 0;
    text-decoration: none;
  }
}

#selector {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid #383a5f;
  padding: 15px;
  & p {
    color: white;
    flex: 1;
    text-align: left;
  }

  & select {
    flex: 1;
    padding: 8px 15px;
    font-size: 0.85rem;
    color: white;
    border: none;
    background: #52557a;
    border-radius: 0.5rem;
    text-transform: uppercase;
  }
}

@media only screen and (max-width: 480px) {
  #selector {
    & p {
      flex: auto;
      width: 100%;
      margin-bottom: 15px;
    }
  }
}

footer {
  & p,
  & a {
    color: white;
    font-size: 0.8rem;
    margin: 2rem 0 0 0;
    opacity: 0.6;
    text-decoration: none;
  }
}
