* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #11174a;
  --color-secondary: #ffbf47;
}

body {
  font-family: "Roboto Condensed", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
}

main {
  background: linear-gradient(to bottom, #11174a, #1c1b4b);
  color: white;
}

.content {
  overflow: hidden;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  padding: 120px 5px 5px;
  text-align: center;
}

.bg-image {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1200px;
}

.bg-image.avatar {
  max-width: 800px;
}

.content .subtitle {
  color: rgb(218, 216, 216);
}

.content h1 {
  font-size: 72px;
  margin: 10px 0 30px;
}

.content h1 span {
  color: var(--color-secondary);
}

.timer {
  display: flex;
  width: 100%;
  margin: 0px auto;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.timer > div {
  text-align: center;
  max-width: 120px;
  width: 100%;
  flex-grow: 1;
  background: var(--color-secondary);
  padding: 10px 5px;
  border-radius: 5px;
  color: black;
}

.timer > div .value {
  font-size: 52px;
  font-weight: bolder;
}

.timer > div .label {
  opacity: 0.5;
}

@media screen and (max-width: 978px) {
  .content {
    padding-top: 100px;
  }

  .bg-image {
    max-width: 900px;
  }
  .bg-image.avatar {
    max-width: 600px;
  }
}

@media screen and (max-width: 578px) {
  .content {
    padding-top: 75px;
  }

  .subtitle {
    font-size: 14px;
  }

  .content h1 {
    font-size: 60px;
  }

  .bg-image {
    max-width: 600px;
  }

  .bg-image.avatar {
    max-width: 400px;
  }

  .timer {
    gap: 6px;
  }

  .timer > div {
    max-width: 100px;
    padding: 5px 8px;
  }

  .timer > div .value {
    font-size: 36px;
  }

  .timer > div .label {
    font-size: 14px;
  }
}
