/*____Global____*/
:root {
  /*____Color Variables____*/
  /*Primary*/
  --grayishBlue: hsl(237, 18%, 59%);
  --softRed: hsl(345, 95%, 68%);
  --darkerRedHue: hsl(345, 95%, 45%);
  /*Neutral*/
  --white: hsl(0, 0%, 100%);
  --darkDesaturatedBlue: hsl(236, 21%, 26%);
  --verydarkBlue: hsl(235, 16%, 14%);
  --veryDarkBlackBlue: hsl(234, 17%, 12%);
}
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Red Hat Text", sans-serif;
  font-size: 14px;
  position: relative;
  background-color: #211a29;
  background-image: url("images/bg-stars.svg"), url("images/pattern-hills.svg");
  background-repeat: no-repeat;
  background-position-y: top, bottom;
  background-blend-mode: difference;
  background-size: 100% 700px, 200% 200px;
  height: 100vh;
}
.bg-img {
  position: relative;
  z-index: -1;
  width: 100%;
  height: auto;
}
/*____Header____*/
header {
  padding-top: 15rem;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  font-size: 1.5rem;
  letter-spacing: 10px;
  max-width: 400px;
  margin: auto;
  text-align: center;
}
@media (min-width: 576px) {
  body {
    background-size: 100% 7coded00px, 120% 200px;
  }
  header {
    max-width: 1000px;
  }
}
.countDown {
  display: flex;
  justify-content: center;
  transform: scale(0.75);
  padding-top: 2rem;
}
@media (min-width: 576px) {
  .countDown {
    transform: scale(1);
  }
}
.countDown > div {
  display: flex;
  flex-direction: column;
  color: #8385a9;
  font-weight: lighter;
  padding: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
}
.bg {
  background: linear-gradient(
    to top,
    var(--veryDarkBlackBlue) 49%,
    black 2%,
    var(--verydarkBlue) 49%
  );
  width: 120px;
  height: 110px;
  border-radius: 5px;
  border-bottom: solid 5px black;
  display: flex;
  justify-content: center;
  align-items: center;
}
span {
  font-size: 60px;
  text-align: center;
  background: linear-gradient(
    to top,
    var(--softRed) 50%,
    var(--darkerRedHue) 50%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/*____Footer____*/
footer {
  width: 100%;
  position: absolute;
  bottom: 1.5rem;
}
.social {
  display: flex;
  justify-content: center;
  margin: 2rem;
  top: 2rem;
}
.social > svg {
  padding: 0 2.5rem 0 0;
  fill: #8385a9;
}
.social > svg:hover {
  fill: var(--softRed);
  cursor: pointer;
}
/*____Signature____*/
.attribution {
  font-size: 11px;
  text-align: center;
  color: white;
}

.attribution a {
  color: hsl(228, 45%, 44%);
}
#demo {
  font-size: 2rem;
  color: white;
}
