* {
  box-sizing: border-box;
}

header{
    text-align: center;
    margin-left: 20px;
    font-weight: bolder;
    color:#f3c4c5;
    -webkit-text-stroke: 3px rgb(163, 109, 117);
    font-family:Verdana, Geneva, Tahoma, sans-serif;
}
body{
    background-image: url("https://i.imgur.com/6Tvns0S.png");
    background-size: 100%;
    background-repeat: no-repeat;
    margin-right: 40px;
    box-sizing: border-box;
    color:white;
    font-size: 30px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.button-wrapper {
  display: flex;
  justify-content: space-around;
}

.seeds-dropdown-container{
    display: flex;
    position: absolute;
    padding: 0;
    justify-content: left;
    margin-right: 600px;
    gap: 0.5rem;
}

#seed-dropdown {
  padding: 1rem;
  font-size: 20px;
  border-radius: 0.5rem;
  border: none;
  background-color: rgb(112, 185, 112);
  color: white;
}

#seed-dropdown:hover{
  background-color: rgb(160, 224, 160);
}


.stats-wrapper {
  display: grid;
  text-align: center;
  grid-template-columns: repeat(3, 1fr);
}

.game-state-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size:medium;

}

button {
  padding: 1.5rem;
  line-height: 1em;
  font-size: 1.5rem;

  border: 0;
  border-radius: 0.5rem;
  
  color: white;
  background-color: #f8b86d;
  transition: background-color 2s cubic-bezier(0.075, 0.82, 0.165, 1);
}

button:hover{
  background-color:#edc699;
}

#seed-image{
    z-index: 2;
    margin-top: 480px;
}

#growth-image{
    z-index: 2;
    bottom: 0;
    margin-top: 480px;
}

#sunflower-image{
    z-index: 2;
    bottom: 0;
    margin-top: 480px;
}

#strawberry-image{
    z-index: 2;
    bottom: 0;
    margin-top: 480px;
}

#lettuce-image{
    z-index: 2;
    bottom: 0;
    margin-top: 480px;
}

.game-graphic {
  max-height: 33vmin;
  margin-bottom: 32px;
  position: absolute;
}

.hidden {
    visibility: hidden;
}
