@import url('https://fonts.googleapis.com/css2?family=Overpass:wght@400;700&display=swap');

:root {
  --orange: hsl(25, 97%, 53%);
  --White: hsl(0, 0%, 100%);
  --Light-Grey: hsl(217, 12%, 63%);
  --Medium-Grey: hsl(216, 12%, 54%);
  --Dark-Blue: hsl(213, 20%, 18%);
  --Very-Dark-Blue: hsl(216, 12%, 8%);
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  font-size: .9375rem;
  color: var(--White);
  background-color: var(--Very-Dark-Blue);
  font-family: 'Overpass', sans-serif;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 1.25rem;
  width: 23.4375rem;
  max-width: 23.4375rem;
  background-color: hsla(213, 20%, 18%, 0.85);
  padding: 1.5rem;
}

.star {
  background-color: var(--Medium-Grey);
  border-radius: 11.25rem;
  padding: .7rem;
}

.hdwdTxt {
  font-size: 1.75rem;
}

.txt {
  color: var(--Light-Grey);
  font-size: 1rem;
}



.attribution a {
  color: hsl(228, 45%, 44%);
}