@font-face {
    font-family: Silk Serif;
    src: url(./Silk\ Serif\ Medium.ttf);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 
}

html , body {
    height: 100%;
    width: 100%;
    font-family:Silk Serif ;
}
body::-webkit-scrollbar{
    display: none;
}

#background {
    position: fixed;
    z-index: -9;
    height: 100%;
    width: 100%;
    background-color: black;
}
#overlay {
    position: fixed;
    z-index: -8;
    height: 100%;
    width: 100%;
    opacity:.1;
    background: url(transparent-plastic-texture-PNG.png)
}

#hero {
    position: relative;
    width: 100%;
    height: 60vh;

}
#hero nav {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px ;
}
#hero nav #links ul {
    display: flex;
    align-items: center;
}
#hero nav img {
    width: 120px;
}
#links a{
    color: white;
    text-decoration: none;
    margin-right:30px ;
}

#hero>h1 {
    position: absolute;
    top: 68%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
    font-size: 50px;
    text-align: center;
    color: white;
    font-weight: 100;
}
#down {
    width: 100%;

}
#down #image {
    width: 100%;
    display: flex;
    justify-content: center;

}
#down #image img {
    width: 700px;
    height: 500px;
}

#text img {
    width: 100px;
}

#text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 100px 0 ;
}
#text h3 {
    color: white;
    font-weight: 100;
    text-align: center;
    width: 50%;
   font-size: 20px;
   margin-bottom: 50px;

}
#text img {
    opacity:0;
}
#hero  i{
    color: white;
    display: none;
}

@media (max-width:600px) {
    #hero #links {
        display: none;
        width: 100%;
    }
    #hero nav img{
        position: absolute;
        left: 30px;
        width: 100px;
    }
    #hero i{
        display: block;
        font-size: 8vw;
        position: absolute;
        right: 30px; 
    }
    #hero h1{
        font-size: 30px;
    }
    #down #image img{
        height: 200px;
        width: 300px;

    }
    #hero nav{
        padding: 50px 0;
        flex-direction: column;
        align-items: flex-start;

    }
    #hero #links ul{
        position: absolute;
        top: 50%;
        left: 44%;
        flex-direction: column;
        
    }
    #hero #links li{
        text-align: center;
    }
    
   
   
}