@font-face {
    font-family: "Aeonik-Regular";
    src: url("static/fonts/Aeonik-Regular.otf");
  }
  
  @font-face {
    font-family: "Aeonik-Bold";
    src: url("static/fonts/Aeonik-Bold.otf");
  }

  body {
    display: flex;
    align-items: center;
    text-align: center;
    font: 2em;
    font-family: Aeonik-Regular, sans-serif;
    margin: 0;
    height: 100vh;
    overflow: hidden;
    color: #FFFFFF;
    padding: 0 2em;
  }

  h1, h2 {
    font-weight: 400;
    font-size: 4.5em;
    margin: 20px 0;
  }

  .container {
    text-align: left;
    max-width: 40em;
  }

  .subcontent {
    line-height: 1.5em;
  }
  
#image-background-desktop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1; 
}

#image-background-mobile {
  display: none;
}

@media screen and (max-width: 1100px) {
  #image-background-desktop {
    object-fit: cover;
    object-position: right;
  }
}

@media screen and (max-width: 640px) {
  body {
    font-size: 1em;
  }

  h1 {
    font-size: 3em;
  }

  h2 {
    font-size: 2em;
  }

  #image-background-desktop {
    display: none; 
  }

  #image-background-mobile {
    display: block; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center top;
    z-index: -1;
  }

  .container {
    background: rgba(0, 0, 0, 0.3);
    padding: 2em;
    border-radius: 10px;
    backdrop-filter: blur(5px);
  }
}

a {
  all: unset;
  text-decoration: underline;
  cursor: pointer;
}
