.attribution { 
  font-size: 11px; 
  text-align: center; 
}
.attribution a { 
  color: var(--White); 
}
*{
  margin: 0;
  padding: 0;
}
:root {
  --Orange: hsl(25, 97%, 53%);
  --White: hsl(0, 0%, 100%);
  --Light-Grey: hsl(217, 12%, 63%);
  --Dark-Blue: hsl(213, 19%, 18%);
  --Very-dark-blue: hsl(216, 12%, 8%);
}
body {
  font-family: "Overpass", serif;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: var(--Very-dark-blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  gap: 2rem;
  color: var(--Light-Grey);
}
.card {
  margin-top: 4rem;
  background-color: var(--Dark-Blue);
  padding: 2rem 1.2rem;
  width: 18rem;
  border-radius: 0.75rem;
}
.feedback--form {
  display: block;
}
.success-message {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.feedback--form img {
  width: 1rem;
  padding: 0.75rem;
  border-radius: 50%;
  background-color: hsla(213, 37%, 24%, 0.3);
}
h1 {
  color: var(--White);
  font-weight: 400;
  margin: 1rem 0;
  font-size: 1.5rem;
}
p {
  color: var(--Light-Grey);
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 400;
}

.rating {
  color: var(--Light-Grey);
  padding: 0.75rem;
  border-radius: 50%;
  border: none;
  width: 2.5rem;
  background-color: hsla(213, 30%, 35%, 0.3);
  font-weight: 700;
  margin: 1rem 0;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
.button--ratings{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.rating:hover {
  background-color: var(--Orange);
  color: var(--Very-dark-blue);
}
.rating:active {
  background-color: var(--White);
}
.submit-btn {
  width: 100%;
  padding: 1rem;
  text-transform: uppercase;
  border-radius: 2rem;
  border: none;
  font-weight: 700;
  letter-spacing: 0.1rem;
  background-color: var(--Orange);
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
.submit-btn:hover {
  background-color: var(--White);
}
.selection {
  margin-top: 1.5rem;
  color: var(--Orange);
  padding: 0.5rem 1rem;
  background-color: hsla(213, 30%, 35%, 0.3);
  border-radius: 1rem;
}

