@font-face {
    font-family: "Plain Light";
    src: url(./fonts/plain-regular-webfont.ttf);
}

@font-face {
    font-family: "Plain Light";
    src: url(./fonts/plain-light-webfont.ttf);
}

@font-face {
    font-family: "silk serif";
    src: url(./fonts/silkserif-regularitalic-webfont.ttf);
}

@font-face {
    font-family: "silk serif";
    src: url(./fonts/silkserif-lightitalic-webfont.ttf);
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-family: "Plain Light";
    color: #000;
    
}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    overflow-x: hidden;
}

.mousefollower {
    border: 2px solid #fff;
    background-color: rgb(255, 255, 255);
    scale: 2;
    mix-blend-mode: difference;
}




#main {
    position: relative;
   
    z-index: 99;
}


  nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
  }

  #nav-part2 {
    display: flex;
    align-items: center;
    gap: 1vw;
    color: #000;
  }

  .nav-links {
    display: flex;
  }

  .nav-links li {
    list-style: none;
  }

  .nav-links a {
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 200;
    letter-spacing: 1px;
    padding: 0 10px;
  }

  .nav-links a:hover {
    color: #f00;
  }

  #mbres {
    visibility: hidden;
  }

  




header{
   
    margin-left: 20rem;
    margin-right: 20rem;
} 

header img {
    width: 60rem;

}

header h1{
    margin-bottom: 1rem;
}

header p{
    word-spacing: 5px;
    font-size: 20px;
}

article{
    margin-left: 20rem;
    margin-right: 20rem;
}

article h2 {

    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

article p{
  word-spacing: 5px;
  font-size: 20px;
}

#footer {

    height: 85vh;
    width: 100%;
    /* background-color: red; */
    position: relative;
    padding-left: 28vw;
    margin-top: 9vw;
    padding-right: 2vw;
}

#footer h2 {
    font-size: 7.2vw;
    text-transform: uppercase;
    /* background-color: blue; */
    position: relative;
}

#footer-text {
    position: relative;
    /* background-color: red; */
}

#footer-text h2 {
    font-size: 7.2vw;
    text-transform: uppercase;
    position: absolute;
    top: -10%;
    font-weight: 500;
    margin: -10vw;
    left: 9vw;
    font-family: "silk serif";
}

#footer-text h3 span {
    font-family: "silk serif";
    opacity: 0;
    -webkit-text-stroke: 1px #fff;
    color: transparent;
}

#footer-text::before {
    content: "04";
    position: absolute;
    font-size: 3vw;
    font-weight: 100;
    font-family: "silk serif";
    left: -13%;
    top: 6%;
}

.underline {
    height: 1px;
    width: 100%;
    background-color: #000;
    margin: 3vw 0;
}

#footer-div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-right: 15vw;
    padding-top: 4vw;
    margin-bottom: 6vw;
    gap: 2rem;
}

#footer-div h6 {
    font-size: 1.2vw;
    margin-bottom: 1.5vw;
    font-weight: 700;
}

.box {
    width: 12rem;
    height: 100%
    
    

}

.box a{
    text-decoration: none;
}   

#footer-div h5 {
   
    font-weight: 500;
    /* margin: 0.1vh 0; */
}

#footer  h5 {
    font-weight: 500;
    font-size: 20px;
}





@media screen and (max-width: 600px){
    .nav {
        background-color: #000;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
        height: 500px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 50px;
        width: 100%;
        overflow: hidden;
    }
    #mbres {
        visibility: visible;
        background-color: transparent;
        border: none;
        margin-left: 70px;
    }
    .nav-links {
        position: absolute;
        top: 12.5rem;
        left: 0;
        right: 0;
        background-color: #000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-100%);
        transition: all 0.5s ease;
    }
    .nav-links li {
        margin: 15px 0;
    }
    .nav-links a {
        font-size: 24px;
        color: #fff;
    }
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

     header{
        margin-left: 1rem;
        margin-right: 1rem;
     }
    
    header img {
        width: 20rem;
        margin-left: 0rem;
    
    }
    
    header h1{
        margin-bottom: 1rem;
    }
    
    header p{
        word-spacing: 5px;
        font-size: 20px;    
    }
    
    article{
        margin-left: 1rem;
        margin-right: 1rem;
    }
    article h2 {
    
        margin-top: 1rem;
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }
    
    article p{
      word-spacing: 5px;
       font-size: 20px;
    }

    #footer {
        height: 108vh;
        width: 100%;
        /* background-color: red; */
        margin-top: 20vw;
        position: relative;
        padding:    5vw 4vw;
        padding-bottom: 5vw;
    }

    
   


    .underline {
        height: 1px;
        width: 100%;
        background-color: #000;
        margin: 8vw 0;
    }

    #footer-div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding-right: 15vw;
        padding-top: 4vw;
        margin-bottom: 6vw;
    }

    #footer-div h6 {
        font-size: 5vw;
        margin-bottom: 3.5vw;
        font-weight: 700;
    }

    .box {
        width: 100%;
        margin-bottom: 5vw;
    }

    #footer-div h5 {
        font-size: 5.4vw;
        margin-bottom: 1.5vw;
        font-weight: 500;
        /* margin: 0.1vh 0; */
    }

    #footer > h5 {
        font-weight: 500;
        margin-bottom: 4vw;
        font-size: 4vw;
    }
}