*{
    padding: 0;
    margin: 0;
    position: relative;
    scroll-snap-type: mandatory;
    scroll-behavior: smooth;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.navbar{
    position: fixed;
    width: 100%;
    background-color: rgb(11, 11, 46);
    z-index: 1;
}
.navbar ul{
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    font-family: 'Courier New', Courier, monospace;
}
.navbar ul li ,a{
    text-decoration: none;
    color: white;
    padding: 5px;
    transition: 0.6s;
}
.navbar ul li:after{
    content: "";
    position: absolute;
    background-color: rgb(0, 89, 255);
    height: 2px;
    left: 0;
    bottom: 2px;
    width: 0%;
    transition: 0.5s;

}
.navbar ul li:hover:after{
    width: 100%;
}
#img1{
    width: 50%;
    background-color: black;
    overflow: hidden;
}
#fci{
    margin-top: 20px;
    width: 50%;
    background-color: rgb(11, 11, 46);
    padding: 0px;
    border-left: 2px solid white; 

}
#imgs1{
    display: flex;
    height: 100%;
}
#layers{
    display: flex;
    flex-direction: column;
}
#about{
    background-color: rgb(11, 11, 46);
    color: white;
    padding: 100px 50px;
    border-top: 2px solid;
}
.do{
    background-color: rgb(11, 11, 46);
    color: white;
    border-top: 2px solid;
    padding: 70px 20%;
    opacity: 1;
}

#cstmrs{
    background-color: rgb(11, 11, 46);
    color: white;
    padding: 50px 30px;
    border-top: 2px solid;
}
#cstmrs li{
    
    width: 100%;
    font-size: x-large;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;


}
.cstm{
    display: flex;
    flex-direction: row;
    justify-content: left;
    padding: 40px;
}
.contact{
    height: 200px;
    background-color: rgb(42, 42, 59);
    padding: 40px;
    color: white;
    z-index: 10;
}
#contact{
    display: flex;
    justify-content: space-evenly;
    font-size: larger;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    z-index: 10;
    padding-bottom: 30px;
}
#contact li{
    padding: 20px;
}
@keyframes fade{
    0% { opacity: 0; }
    100% { opacity: 1;  }
}
#ttl{
    position: fixed;
    display: flex;
    flex-direction: column;
    width: 50%;
    color: white;
    padding: 10%; 
    top: 50px;

}
#ttl1{
    font-size: 4vw;
}
#ttl2{
    top: -25px;
    color: rgb(155, 155, 155);
    text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.527);
    font-size: 2.5vw;
}
#last{
    padding: 0px;
}
@media (max-width: 950px){
    *{
        flex-direction: row;
    }
    .cstm{
        padding: 0;
        flex-direction: column;
    }
    #contact li{
        padding:2px;
    }
    .navbar ul{
        flex-direction: row;
        padding: 0px;
        font-size: 2.5vw;
    }
    #contact{
        flex-direction: column;
        font-size: 3vw;
        justify-content: end;

    }
    .do{
        padding:40px 2%;
    }
    #about{
        padding: 20px 15px;
    }
    #last{
        padding: 0;
        margin: 0;
    }
    .navbar ul li:hover{
        background-color: rgba(255, 255, 255, 0.808);
        color: rgb(11, 11, 46);

    }
    .contact h1{
        font-size: 6vw;
    }
}
