@font-face {
  font-family: Neue-R;
  src: url("../font/NeueHaasDisplayRoman.ttf");
}
@font-face {
  font-family: Neue-M;
  src: url("../font/NeueHaasDisplayMediu.ttf");
}
@font-face {
  font-family: Dauph;
  src: url("../font/Dauphin Regular.otf");
}
html {
  font-family: Dauph;
}
a {
  text-decoration: none;
  color: black;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  -webkit-font-smoothing: antialiased;
  flex-direction: column;
  overflow: hidden;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}

.container {
  /* font-family: Neue-R; */
  z-index: 1;
  width: 100%;
  mix-blend-mode: lighten;
  margin: 0 auto;
  justify-content: space-between;
  flex-direction: column;
  height: 100vh;
  display: flex;
  background-color: rgba(255, 255, 255, 0);
  align-items: center;
  transition: background-color 10s linear;
}
.container.fast-transition {
  /* transition: background-color 0.5s ease;  */
  /* opacity: 0; */
}

.logo {
  margin-top: 1rem;
  position: absolute;
  font-size: 1.75rem;
  mix-blend-mode: lighten;
  top: 10%;
  color: white;
  z-index: 5;
  letter-spacing: 0px;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  text-transform: uppercase;
  transition: opacity 10s linear;
}

.description {
  margin-bottom: 4rem;
  font-size: 1rem;
  line-height: 1.4;
  width: 45%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  z-index: 2;
  bottom: 0.5rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.footer-links a {
  text-decoration: none;
  color: #000;
}

.background-img {
  width: 100%;
  height: 100%;
  z-index: 0;
  transition: 5s linear;
  position: absolute;
}

img {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
}
