/* Import Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  width: 100%;
  height: 100vh;
  background: #4070f4;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 9rem;
}
.dropdown{
  position: relative;
  width: 30rem;
}
.dropdown-menu{
  padding: 1.1rem;
  border-radius: 6px;
  background: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}
.list{
  border-radius: 6px;
  background: #fff;
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  display: none;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}
.list li{
  padding: 1rem;
  list-style: none;
  font-size: 1.2rem;
  font-weight: 500;
}
input{
  display: none;
}
#check:checked ~ .list{
  display: block
}
