@font-face {
  font-family: "Spear Glyphic";
  src: url("./assets/SpearGlyphic-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: light;
  font-family: "Spear Glyphic", Georgia, "Times New Roman", serif;
  background: #dadada;
  color: #292929;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
}

.landing {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(to bottom, #b7d1db 0, rgba(185, 225, 240, 0) 304px), #dadada;
}

.landing::before {
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: #64ffd1;
  content: "";
}

.announcement {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 48px 24px;
}

.mark {
  display: block;
  width: 54px;
  height: 44px;
  object-fit: contain;
}

.date {
  margin: 0;
  font-size: clamp(36px, 7vw, 50px);
  font-weight: 400;
  line-height: 1.28;
  white-space: nowrap;
}

.date-year {
  display: inline-block;
}
