* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #131518;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: "overpass";
  font-size: 14px;
}

.container {
  background: radial-gradient(#232a34, #181e27);
  width: 90%;
  max-width: 412px;
  padding: 2em 2.5em;
  border-radius: 0.5rem;
}

.star {
  background-color: #262e38;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.container h1 {
  color: white;
  font-size: 1.5rem;
  margin: 0.75em 0;
  font-weight: 700;
}

.container p {
  color: #969fad;
  line-height: 1.75em;
}

.rating--container {
  display: flex;
  margin: 1.5em 0;
  justify-content: space-between;
}

.rating {
  background-color: #262e38;
  width: 42px;
  height: 42px;
  display: inline-block;
  color: #979797;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0.125em;
  cursor: pointer;
}

.rating--active {
  background-color: #fc7614;
  color: white;
}

.rating--inactive:hover {
  background-color: #7c8798;
  color: white;
}

.rating--summary {
  color: #fc7614;
  display: block;
  background-color: #262e38;
  width: fit-content;
  margin: 2em auto;
  padding: 0.625em 1.5em 0.5em;
  border-radius: 4em;
}

#submit {
  display: block;
  width: 100%;
  background-color: #fc7614;
  border: none;
  color: white;
  padding: 1em 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  border-radius: 2.5em;
  cursor: pointer;
}

#submit:hover {
  background-color: white;
  color: #fc7614;
}

@media (min-width: 600px) {
  body {
    font-size: 15px;
  }

  .container h1 {
    font-size: 1.75rem;
  }
}
