@charset "UTF-8";

@font-face {
  font-style: normal;
  font-weight: normal;
  font-family: "Work Sans";
  src:
    url("../fonts/WorkSans-Medium.woff2") format("woff2"),
    url("../fonts/WorkSans-Medium.woff") format("woff");
}

@font-face {
  font-style: normal;
  font-weight: normal;
  font-family: "Basel Grotesk Mono";
  src: url("../fonts/Basel-Grotesk-Mono-Book.woff2") format("woff2");
}

.ornament {
  position: fixed;
  width: 20vw;
  height: auto;
  z-index: 10;
}

.top-left {
  top: 10px;
  left: 10px;
}

.top-right {
  top: 10px;
  right: 10px;
}

.bottom-left {
  bottom: 10px;
  left: 10px;
}

.bottom-right {
  bottom: 10px;
  right: 10px;
}

.year {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Basel Grotesk Mono", sans-serif;
  font-size: 0.8rem;
  color: black;
  z-index: 11;
}

.center-row {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.square2 {
  width: 140px;
  aspect-ratio: 1 / 1;
  background: #f0efe0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Basel Grotesk Mono", sans-serif;
  font-size: 0.8rem;
  color: rgb(0, 0, 0);
  /*color: rgb(176, 176, 176);*/
  text-transform: uppercase;
}

.square {
  width: 140px;
  aspect-ratio: 1 / 1;
  background: #f0efe0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Basel Grotesk Mono", sans-serif;
  font-size: 0.8rem;
  color: rgb(176, 176, 176);
  text-transform: uppercase;
}

.square:hover {
  color: rgb(170, 170, 170);
  cursor: pointer;
  text-decoration: overline;
  transform: rotate(90deg);
  transition: ease-in-out 0.3s;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Video Background */
.video-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 5%;
  mix-blend-mode: multiply;
}

body {
  background-color: #f0efe0;
}
