body{
    margin: 0;
}

/*Navbar CSS*/
.navbar{
    position: absolute;
    display: flex;
    align-items: center;
    background: white;
    height: 9vw;
    width: 100%;
    z-index: 9001;
    position: fixed;
    border-bottom: black 2px solid;
}

.navbar-logo{
    display: flex;
    align-items: center;

    height: 10vw;
    width: 20vw;
}

.navbar img{
    width: 25vw;
    height: auto;
    /*
    284px
    92px
    */

    filter: invert(1);
}

span{
    display: inline-block;
    margin-right: 0px;
    font-family: 'Patua One', cursive;
    text-align: center;
}

.not-logo-nav-items{
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: black;
    margin-right: 0vw;
    margin-left: 4vw;
}

a{
    text-decoration: none;
    color: black;
    margin: 2vw;
    font-size: 1.4vw;
}

.not-logo-nav-items span:hover{
    display: inline-block;
    border-bottom: 0.5vw solid transparent;
}

/*Fun page body*/
.fun-page{
    background-color: white;
    font-family: 'IBM Plex Serif', serif;
    text-align: center;
    padding-top: 9vw;
}

.fun-page h1{
    color: black;
    font-size: 3.3vw;
    font-weight: 900;
    font-family: 'IBM Plex Serif', serif;
}

.fun-page h2{
    padding-top: 2vw;
    color: black;
    font-size: 2.5vw;
    font-weight: 900;
    font-family: 'IBM Plex Serif', serif;
}

.fun-page span{
    width: 75vw;
    color: black;
    font-size: 1.5vw;
    font-weight: 700;
    font-family: 'IBM Plex Serif', serif;
}

.fun-spacer{
    height: 9vw;
}

iframe{
    width: 64vw;
    height: 36vw;
    box-shadow: 0 0 100px rgba(45, 0, 71, 0.64);
}

h3{
    font-size: 2vw;
}

/*footer css*/
.footer {
    position: relative;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 3vw;
    background-color: #110022;
    text-decoration: none;
    display: flex;
    align-items: center;
  }

  .footer-contents li{
      list-style: none;
  }

  .footer-again{
      display: flex;
      align-items: center;
  }

  .footer-again span{
      width: 100%;
      position: absolute;
      text-align: center;
      font-family: 'IBM Plex Serif', serif;
      font-size: 1vw;
      color: rgba(255, 255, 255, 0.75);
  }

  .footer-logo{
      height: 2.75vw;
      padding-right: 20vw;
      padding-left: 2vw;
  }