html {
  height: 100%;
  overflow: auto;
  overflow-y: auto;
  scrollbar-color: #B8979E #F1EAEC;
}

@font-face {
  font-family: "vl-smooth-handwriting-regular";
  src: url("VL_Smooth Handwriting.otf") format("woff"), url("VL_Smooth Handwriting.otf") format("opentype"), url("VL_Smooth Handwriting.otf") format("truetype");
}

@font-face {
  font-family: "coves-bold";
  src: url("Coves Bold.otf") format("woff"), url("Coves Bold.otf") format("opentype"), url("Coves Bold.otf") format("truetype");
}

body {
  background-color: white;
  color: #B8979E;
  font-family: 'coves-bold';
  text-align: center;
  display: flex;
  margin-top: 50px;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 5rem;
  font-family: 'vl-smooth-handwriting-regular';
  color: #C29752;
  text-shadow: 1px 1px 5px #E8D394;
  margin: 0;
  margin-top: 40px;
  line-height: 70%;
}

p {
  font-size: 1.5rem;
}

p:nth-of-type(2) {
  font-size: 1.5rem;
}

a {
  color: #C29752;
  white-space: nowrap;
}

hr {
  color: #C29752;
}

#countdown {
  max-width: 600px;
}

#countdown ul {
  margin: 5% 0 0 0;
  padding: 0;
  display: flex;
  gap: 5%;
}

#countdown ul li {
  flex: 15%;
  padding: 1%;
  margin: 0;
  list-style: none;
  color: white;
  background: #B8979E;
  border-radius: 10px;
  height: 75px;
  width: 75px;
}

#countdown ul li span {
  display: block;
  font-size: 3rem;
}