*{
    font-family: 'poppins';
    color: white;
}

html{
    background-color: rgb(12, 12, 12);
    overflow-x: hidden;
}

body{
    border: 0px;
    margin: 0px;
}

nav{
    height: 10vh;
}

.nav-container{
    width: 100vw;
    position: relative;
    top: 0;
    background: rgba(17, 17, 17, 0.859);
    z-index: 1;
}

.divider{
    margin-left: 5vw;
    width: 90vw;
    height: 2px;
    border-bottom: 1px solid rgb(54, 54, 54);
}

header{
    width: 100vw;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0px;
}

header > *{
    position: relative;
    z-index: 1;
}


.languages{
    width: 90vw;
}


.projects{
    width: 90vw;
    height: 100vh; /* REMOVE THIS LATER */
    /* background-color: black; */
}

.content-section{
    margin-inline: 5vw;
    margin-top: 8vh;
    margin-bottom: 8vh;
}

.languages-content{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    width: 90vw;
    
}

.languages-content > div{
    width: 20vw;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5vh;

    border: 1px solid white;
    border-radius: 12px;

    transition: 0.2s;
}

.languages-content > div:hover{
    transform: translate(-0.5em, -0.5em);
}

.project{
    width: 90vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10vh;
    border-radius: 12px;
}

.project-left{
    flex-direction: row-reverse;
}

.project > p{
    width: 40vw;
}


.project-1{
    background-image: url(assets/sas_logo.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 40vw;
    height: 50vh;
    border-radius: 24px;
}

.project-2{
    background-image: url(assets/NASA-Logo.png);
    background-repeat: no-repeat;
    width: 40vw;
    height: 50vh;
}



.project-image{
    border-radius: 24px;
    background-size: contain;
}


.header-contents > h1{
    font-size: 8em;
    margin: 0px;
}

.header-contents > h4{
    margin: 0px;
}