@import url("https://fonts.googleapis.com/css2?family=Overpass:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  background-color: black;
  color: hsl(0, 0%, 100%);
  font-size: 15px;
  font-family: "Overpass", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hidden {
  display: none;
}

p {
  color: hsl(217, 12%, 63%);
  line-height: 1.5rem;
}

h1 {
  margin-bottom: 1rem;
  margin-top: 1rem;
}
/*


### Primary

- Orange: hsl(25, 97%, 53%)

### Neutral

- White: hsl(0, 0%, 100%)
- Light Grey: hsl(217, 12%, 63%)
- Medium Grey: hsl(216, 12%, 54%)
- Dark Blue: hsl(213, 19%, 18%)
- Very Dark Blue: hsl(216, 12%, 8%)

## Typography

### Body Copy

- Font size (paragraph): 15px

### Font

- Family: [Overpass](https://fonts.google.com/specimen/Overpass)
- Weights: 400, 700
*/
.container-rate,
.container-thanks {
  max-width: 400px;
  /* min-height: 400px; */
  height: auto;
  padding: 2rem;
  background: linear-gradient(to top, hsl(216, 12%, 8%), hsl(213, 19%, 18%));
  border-radius: 10px;
  overflow: hidden;
}

.centered {
  text-align: center;
}

.icon {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: hsl(216, 12%, 8%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rating-text {
  background-color: hsl(213, 19%, 18%);
  padding: 0.5rem 0rem;
  width: 65%;
  margin: 2.5rem auto;
  border-radius: 20px;
  color: hsl(25, 97%, 53%);
}

.ratings {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.rate {
  cursor: pointer;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: hsl(216, 12%, 8%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: hsl(216, 12%, 54%);
  font-weight: 700;
  transition: 0.25s;
  border: none;
}

.rate:hover {
  background-color: hsl(217, 12%, 63%);
  color: white;
}

.rate.selected,
.rate:active,
.rate:focus {
  color: white;
  background: hsl(25, 97%, 53%);
}

.submit-btn {
  width: 100%;
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border: none;
  background: hsl(25, 97%, 53%);
  color: white;
  border-radius: 10rem;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #fff;
  color: #444;
  box-shadow: 2px black;
}

footer {
  position: absolute;
  bottom: 20px;
}
