body{
  font-family: Overpass, sans-serif;
  background-color: hsl(216, 12%, 8%);
  color: white;
}

.hidden{
  display: none !important;
}

.main-container{
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  justify-self: center;
  margin-top: 100px;
  height: 50vh;
  width: 50vh;
  background-image: linear-gradient(190deg, hsl(206, 18%, 17%), hsl(215, 19%, 12%));
  border-radius: 15px;
}

.star-icon-container{
  background-color: hsl(207, 18%, 24%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 1.5rem;
  left: 16px;
  margin: 0;
}

.star-icon{
  width: 13px;
  height: 13px;
}

.main-title{
  font-size: 20px;
  font-weight: 600;
  margin-top: 60px;
  font-family: Overpass, sans-serif;
  margin-left: 16px;
}

.main-text{
  font-size: 15px;
  font-weight: 400;
  margin-top: 0.5rem;
  font-family: Overpass, sans-serif;
  margin-left: 16px;
  margin-right: 16px;
  color: hsl(217, 12%, 63%);
}

.rating-form{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.5rem;
}

.rating-button{
  width: 40px;
  height: 40px;
  background-color: hsl(207, 18%, 24%);
  color: hsl(0, 0%, 100%);
  border: none;
  padding: 12px;
  border-radius: 50%;
  margin: 0.5rem;
  margin-top: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 600;
  font-family: Overpass, sans-serif;
}

.rating-button:hover{
  background-color: hsl(25, 97%, 53%);
  color: black;
}

.rating-button.selected{
  background-color: hsl(0, 100%, 100%);
  color: black;
}

.submit-button{
  margin-top: 20px;
  padding-bottom: 10px;
  border-radius: 20px;
  background-color: hsl(25, 97%, 53%);
  color: black;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600; 
  font-family: Overpass, sans-serif;
  width: 280px;
}

.submit-button:active{
  background-color: hsl(0, 100%, 100%);
  color: black;
  transform: translateY(0);
}


.thank-you-state{
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  justify-self: center;
  align-items: center;
  margin-top: 100px;
  height: 50vh;
  width: 50vh;
  background-color: hsl(215, 19%, 12%);
  border-radius: 15px;
  margin-bottom: 200px;
}

.thank-you-image-container{
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.rating-message{
  text-align: center;
  margin-top: 20px;
  padding-bottom: 10px;
  border-radius: 20px;
  background-color: hsl(214, 18%, 17%);
  color: hsl(25, 97%, 53%);;
  padding: 10px 18px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  font-family: Overpass, sans-serif;
  width: 160px;
}

.thank-you-title{
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
  font-family: Overpass, sans-serif;
  text-align: center;
}

.thank-you-text{
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  margin-top: 0.5rem;
  font-family: Overpass, sans-serif;
  margin-left: 16px;
  margin-right: 16px;
  color: hsl(217, 12%, 63%);
}

span.colorlink{
  color: rgba(199, 110, 62, 0.838);
}

.attribution{
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  text-align: center;
}