html,
body {
  margin: 0;
  padding: 0;
}

body {
  background-color: #0f0f0f;
  font-family: 'Inter', sans-serif;
}

h1 {
  font-size: 25px;
  color: #deeaee;
  text-align: center;
}

.container {
  max-width: 320px;
  margin: 0 auto;
}

#player {
  background-color: #deeaee;
}

button {
  font-family: 'Inter', sans-serif;
  background-color: #bdd59b;
  border: 0;
  border-radius: 5px;
  font-size: 18px;
  padding: 10px 0;
}

button:hover {
  background-color: #ff9492;
  cursor: pointer;
}

.songs {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-top: 10px;
}
