
:root{
    --color1: #3A3D45;
    --color2: #668FB2;
    --color3: #4E9FC3;
    --color4: #9BBAC0;
    --color5: #F8F8F7;

    --grid_line_color: #7a7a791d;

    color: var(--color4);
    font-family: 'Space Grotesk', sans-serif;


}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body{
    margin: 0;
    padding: 0;
}

.navbar{
    display: inline-block;
    position: fixed;
    height: 100vh;
    background-color: var(--color2);
    border-radius: 2px;
    z-index: 100;
    padding: 10px;
    
}

.nav-links{
    list-style: none;
    display: inline-block;

}

.navbar a{
    text-decoration: none;
    color: var(--color4);
}

#nav_open{
    border: none;
}

.nav_item{
    margin-bottom: 10px;
    padding-left: 2px;
}

.nav_item:hover{
    color: var(--color5);
    transform: scale(1.05);

}

hr{
    margin-top: 10px;
    margin-bottom: 15px;
    border: 1px var(--color5) solid;
    border-radius: 20px;
}

header{
    display: flex;
    justify-content:right;
    padding-bottom: 10px;
    padding-top: 30px;
    padding-right: 60px;
}

header h1{
    font-size: 50px;
    font-weight: 300;
}



body{
    background-color: var(--color1);
    opacity: 0.8;
    background-image:  linear-gradient(var(--grid_line_color) 1px, transparent 0.1px), linear-gradient(to right, var(--grid_line_color) 0.1px, var(--color1) 1px);
    background-size: 40px 40px;
}


section{
    border:1px green solid;
    min-height: 1100px;
    display: flex;
    justify-content: center;
    margin-left: 60px;
    margin-right: 1%;
    margin-bottom: 5px;
    flex-wrap: wrap;
    
}

.section_split{
    margin-left: 8%;
    margin-right: 2%;
}

#contact{
    align-items: center;
    display: flex;
    justify-content: center;
}


div{
    border: 1px red solid;
}


.item_container{
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    margin: 10px;
    border: none;
    width: 100%;



}

.portfolio_item{
    width: 50%;
    height: 500px;
    margin: 10px;
    background-color: var(--color2);
    backdrop-filter: (10px);
    opacity: 0.6;
    border: none;
    border-radius: 5px;

}











.contact_form{
    display: flex;
    height: 600px;
    width: 500px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 5px;
    border: none;
    background-color: var(--color2);
    color: var(--color1);
    padding: 10px;
    opacity: 0.9;


}

form{
    background-color: #F8F8F7;
    padding: 60px;
    border-radius: 5px;
}


.contact_label{
    font-size: 18px;
}

.contact_input{
    width: 100%;
    font-size: 18px;
}

button{
    width: 120px;
    height: 30px;
    border-radius: 5px;
    background-color: var(--color1);
    color: var(--color5);
    border: none;
}

button:hover{
    background-color: var(--color2);
    color: var(--color5);
    border: none;
}

h6{
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
}

textarea{
    max-width: 100%;
    max-height: 100%;
    font-size: 16px;
}



footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 175px;
    background-color: var(--color1);
    opacity: 0;
    overflow:hidden;
    border-top: 1px rgba(255, 255, 255, 0.141) solid;


}

@media (max-width: 768px){
    form{
    }
}