*{
  size: 62.5%;
  background-color:#e9edc9;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body{
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

h1{
  text-align: center;
  font-size: 2rem;
  margin-top: 2rem;
}

#requestSongForm{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  margin-top:2rem;
  border-radius: .5rem;
  width: 50vw;
  height: auto;
  background-color: white;
}
#requestSongForm label{
  width: 100%;
  font-size: 1rem;
  background-color: white;
}
#requestSongForm input{
  width: 100%;
  height: 2.5rem;
  margin-top: .3rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 1rem solirgb(173, 173, 173)00;
  background-color: white;
  border-radius: 5px;
}

#requestSongForm button{
  width: 100%;
  height: 2.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 1rem solid #d4a373;
  background-color: #d4a373;
  border-radius: 5px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 600px) {
  #requestSongForm{
    width: 90vw;
  }
}