:root {
  /* ## Colors */

  /* ### Primary */

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

  /* ### Neutral */

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

/****** TAG SELECTOR ******/

* {
  box-sizing: border-box;
  font-family: "Overpass", "sans-serif";
}

body {
  font-size: 15px;
  font-weight: 400, 700;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  align-items: center;
  background-color: var(--Very-Dark-Blue);
}

img {
  align-self: center;
}

h1 {
  color: white;
  margin-bottom: 0;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: var(--Light-Grey);
}

p {
  color: var(--Light-Grey);
  margin-top: 0;
  line-height: 1.45;
}

/****** ID SELECTOR ******/

/****** CLASS SELECTOR ******/
.container {
  background-color: var(--Dark-Blue);
  width: 23.8rem;
  height: 25.1rem;
  border-radius: 5%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.star-container {
  background-color: var(--Medium-Grey);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
}

.numbers-container {
  color: var(--Light-Grey);
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.number {
  background-color: var(--Medium-Grey);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.number:hover {
  background-color: var(--Orange);
  color: var(--White);
  transition: 1s;
  cursor: pointer;
}

.selected {
  background-color: var(--Light-Grey);
  color: var(--White);
}

.button {
  height: 40px;
  border-radius: 50px;
  border-style: none;
  background-color: var(--Orange);
  color: var(--White);
  letter-spacing: 1.5px;
}

.button:hover {
  cursor: pointer;
  background-color: var(--White);
  color: var(--Orange);
}

/* FOOTER */
.attribution {
  margin-top: 10px;
  font-size: 11px;
  text-align: center;
  color: white;
}
.attribution a {
  color: hsl(228, 78%, 72%);
}

/******************* THANKS ********************/

.thanks-container {
  display: none;
}

.thanks-container {
  background-color: var(--Dark-Blue);
  width: 23.8rem;
  height: 25.1rem;
  border-radius: 5%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.image {
  margin: 15px 0 15px 0;
}

.rating {
  color: var(--Orange);
  background-color: var(--Medium-Grey);
  padding: 5px 18px;
  border-radius: 50px;
}

.thanks-info {
  color: var(--Light-Grey);
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 375px) {
  .container {
    min-width: 22rem;
  }
}
