html {
  height: 110%;
}

body {
  background-color: #aeecbc !important;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

h1 {
  font-weight: 700 !important;
}

.main-container {
  width: 640px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #89CAF8;
  padding: 2rem;
  border-radius: 5px;
}

.top-row {
  width: 100%;
  justify-content: space-between;
}

.inner-wrapper{
  width: 278px;
  height: auto;
}

.song-options-wrapper{
  width: 90%;
  height: 320px;
  margin-top: 20px;
}

.select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

#guess-type,
#playlist-select {
  opacity: 0.5;
  margin-bottom: 1rem;
  height: 40px;
  border-radius: 4px;
  border: none;
  outline: none;
  appearance: none;
  padding: 5px;
  text-align: center;
  width: 100%;
}

.select-wrapper::after {
  content: '⌄';
  opacity: 0.5;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-100%);
  pointer-events: none;
  padding-right: 10px;
}

#play-button,
#pause-button {
  background-color: #9289F8;
  color: white;
  margin: 0.5rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  width: 100%;
  margin:0;
  height: 55px;
  font-weight: 600;
}

#audio-player {
  width: 300px;
  height: 50px;
}

.progress {
  width: 100%;
  height: 20px;
  border-radius: 1px;
  margin-top: 10px;
}

.progress-bar {
  height: 100%;
  width: 100%;
  border-radius: 1px;
  background-color: #9289F8 !important;
  transition: ease !important;
}

#options-container {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
  justify-items: center;
  width: 100%;
}

.option {
  background-color: white;
  width: 252px;
  height: 128px;
  color: black;
  padding: 1rem;
  border-radius: 14px !important;
  cursor: pointer;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

#current-streak{
  width: 100%;
}

#spotify-logo {
  width: 70px;
  height: auto;
}

.mute-unmute {
  background-color: #9289F8;
  width: 35px;
  height: 35px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

footer{
  width: 90%;
  align-items: center;
  text-align: center;
  font-size: 14px;
  padding: 10px;
  margin-top: 30px;
}

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

/* Mobile styles */
@media (max-width: 680px) {
  html {
    height: 135%;
  }
  .main-container {
    width: 350px;
    height: 780px;
    margin: 0 auto;
    justify-content: start;
    padding: 1.25rem;
  }

  #options-container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  #options-container button {
    width: 100%;
    height: 70px;
    box-sizing: border-box;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    transition: 0.3s;
  }

  .song-options-wrapper{
    margin-bottom: 35px;
    width: 100%;
  }

  .top-50{
    font-size: 1.5rem;
  }
}
