*,
*::before,
*::after {
  box-sizing: border-box; }

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0; }

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
figure,
blockquote,
dl,
dd {
  margin: 0; }

/* Set core root defaults */
html {
  scroll-behavior: smooth; }

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5; }

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto; }

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block; }

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em; }

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit; }

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px); }

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important; } }

.u-container {
  max-width: 90rem;
  width: 90%;
  margin-inline: auto; }

body {
  background-color: #1e1f29;
  font-family: "Red Hat Text", sans-serif;
  position: relative;
  display: grid;
  place-items: center; }
  body::after, body::before {
    content: "";
    position: absolute;
    inset: 0; }
  body::before {
    background: linear-gradient(#191a24, #2F2439);
    opacity: 0.6; }
  body::after {
    background-image: url(../images/bg-stars.svg), url(../images/pattern-hills.svg);
    background-size: 100% 20%;
    background-blend-mode: multiply;
    background-position: top left, bottom left;
    background-repeat: repeat, no-repeat; }
    @media (min-width: 48rem) {
      body::after {
        background-size: contain; } }

.countdown {
  text-align: center;
  color: white; }
  .countdown__title {
    text-transform: uppercase;
    font-size: 1.125rem;
    letter-spacing: 0.38375rem;
    font-weight: bold;
    max-width: 25ch;
    margin-inline: auto; }
    @media (min-width: 36rem) {
      .countdown__title {
        max-width: initial;
        font-size: 1.375rem; } }
  .countdown__container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 5rem;
    color: #fb6087; }
  .countdown__value {
    font-size: 2.25rem; }
    @media (min-width: 36rem) {
      .countdown__value {
        font-size: 6rem; } }
  .countdown__label {
    display: block;
    margin-top: 1rem;
    text-transform: uppercase;
    font-size: 0.4375rem;
    color: #8486a9; }
    @media (min-width: 36rem) {
      .countdown__label {
        font-size: 0.875rem; } }

.social {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  justify-content: center;
  column-gap: 2rem;
  margin-bottom: auto; }
  .social__icon {
    list-style: none; }
  .social__link {
    text-decoration: none;
    outline: none; }
    .social__link:hover .social__img,
    .social__link:focus .social__img {
      fill: #fb6087; }
