/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
}

/*
  Typographic tweaks!
  3. Add accessible line-height
  4. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/*
  5. Improve media defaults
*/
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/*
  6. Remove built-in form typography styles
*/
input,
button,
textarea,
select {
  font: inherit;
}

/*
  7. Avoid text overflows
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/*
  8. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

html,
body {
  height: 100vh;
}

body {
  --red: #fe0015;
  --white: #fff;
  background-color: var(--red);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: clamp(0.5rem, 4vw, 5rem);
  padding-right: clamp(0.5rem, 4vw, 5rem);
}

h1 {
  font-size: clamp(1.8rem, 10vw, 6.6rem);
  font-family: "Oswald", sans-serif;
  margin: 0.5rem;
  margin-top: -0.5rem;
}
h1.timer-ended {
  order: -1;
}

span {
  font-size: clamp(0.9rem, 4vw, 2.8rem);
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  text-align: center;
}

.clock {
  display: flex;
  gap: 1rem;
  position: relative;
  margin-bottom: 1rem;
}
.clock:before, .clock:after {
  content: "";
  background-color: var(--white);
  position: absolute;
  height: 10%;
  width: 2rem;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: 2;
}
.clock:before {
  top: 38%;
}
.clock::after {
  top: 62%;
}
.clock__part {
  background-color: var(--white);
  width: clamp(8rem, 24vw, 15rem);
  color: var(--red);
  text-align: center;
  position: relative;
  filter: drop-shadow(6px 6px 0.1rem rgba(98, 0, 0, 0.479));
}
.clock__part span {
  font-size: 9rem;
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  position: relative;
}
.clock__part span:after {
  content: "";
  height: 3px;
  width: 100%;
  position: absolute;
  left: 0;
  background-color: var(--white);
  top: calc(50% - 1.5px);
}

.read-more-button button {
  margin-top: 2rem;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 9999px;
  color: var(--red);
  cursor: pointer;
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 1.7px;
  line-height: 1;
  padding: 1rem 2rem 1.1rem;
  text-transform: uppercase;
  transition: all 0.5s;
}
.read-more-button button:hover {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

/*# sourceMappingURL=style.css.map */
