/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
.libre-franklin-test {
  font-family: "Libre Franklin", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.roboto-para {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}


body {
    background: #100F13;
    color: white;
    margin: 0;
}

footer {
  margin: 20px 10% 100px 10%;
}

h1 {
  font-family: "Libre Franklin", sans-serif;
  font-size: 64px;
}

h1 .page-title {
  font-family: "Libre Franklin", sans-serif;
  font-size: 6vh;
  font-weight: 800;
}

p {
  font-family: "Roboto", sans-serif;
}

/* Landing Container Stuff */

header {
    padding: 24px;
    position: relative;
}

#land-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
  padding: 20px;
  height: 80vh;
}

#land-container img {
  width: 30vw;
  height: auto;
  margin: auto;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline;
  all: unset;
}

#landing-section {
  height: 100vh;
  background-image: linear-gradient(#1E1547, #100F13);
  color: white;
}

#landing-section * {
z-index: 2;
}

#landing-text-con {
  margin-left: 20%;
  white-space: nowrap;
  font-family: "Libre Franklin", sans-serif;
}

#landing-text-con h1 {
  font-size: 8vh;
  font-weight: 800;
  margin: 0;
}

#landing-text-con p {
  margin: 0;
  font-size: 4vh;
}

/* ----------------------- */

main {
  max-width: 80%;
  margin: 300px auto;
}

nav {
    float: right;
    vertical-align: middle;
    position: absolute;
    margin: 0;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    font-family: "Libre Franklin", sans-serif;
  }

  nav>ul>li a {
    color: white;
    text-decoration: none;
    font-size: 4vh;
    width: 200px;
    padding: 7px;
    border-radius: 15px;
    transition: color 0.3s ease;
  }
  
  nav>ul li {
    display: inline-block;
    margin-right: 20px;
  }

  nav>ul a:hover {
    color: #90B3FF;
  }

  object>svg {
    fill: red;
  }

  .background-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    object-fit: cover;
  }

  @media (max-width: 600px) {
    #land-container {
      grid-template-columns: 1fr;
    }
    nav {
      display: block;
      float: none;
      position: unset;
      margin-top: 50px;
    }
    .site-logo {
      position: relative;
      left: calc(50% - 100px)
    }
    nav>ul {
      justify-content: center;
      display: flex;
      gap: 50px;
    }
    #land-container {
      height: 50vh;
    }
  }

  @media (max-width: 1000px) {
    #landing-text-con h1 {
      font-size: 8vw;
    }
    
    #landing-text-con p {
      font-size: 4vw;
    }
    #land-container img {
      display: none;
    }
    #landing-text-con {
      margin-left: 15%;
    }
  }