body{
   background: linear-gradient(180deg,rgba(57, 64, 55, 1) 10%, rgb(97, 110, 90) 87%);
}
#main {
    border-left:solid black 1px;
    border-right:solid black 1px;
    margin-left:10%;
    margin-right:10%;
    padding:2%;
    background-color: rgb(255, 255, 255);
}

#nav_button{
    display:flex;
    flex-direction: column;
    background-color: brown;
    justify-content: space-evenly;
    align-content: center;
    border-radius: 15px;
    padding:10px;
    width:75px;
    height:75px;
}

.nav_line{
    background-color: rgb(41, 11, 11);
    width:70%;
    height: 10%;
    border-radius: 20px;
    margin: auto;
}

#nav{
    display:none;
    position: relative;
    top:-12px;
    left:120%;
    width: 150px;
    height:300px;
    transition: 20s ease-in;
    border: black solid 1px;
    border-radius: 15px;
    flex-direction: column;
    text-align: left;

}

#nav_list{
    font-size: 1.6em;
    padding-left:-10px;
    list-style: none;
}

#nav_list li{
    margin:10px;
}

.header{
    display:flex;
    justify-content: center;
    width:30%;
    margin: auto;
    margin-bottom:30px;
    border-bottom: solid black 2px;
}

.header h1{
    font-size: 2.8em;
    margin-bottom: -3px;
}


footer{
    padding-top:50px;
    display:flex;
    flex-direction: column;
    width:100%;
    height:fit-content;
    border-top:black solid 2px;
}

#footer_images {
    display: flex;
    flex-direction: row;
    width: fit-content;    
    align-self:center;
    justify-self: center;
    padding:0.5%;
}

.round_img{
    height:50px;
    width: 50px;
    padding:10px;
    margin:10px;
    border-radius: 50%;
    background-color: aqua;
}

#footer_info {
    padding:-5px;
    width: fit-content;

}

.index_box{
    display: flex;
    margin: 20px;
}

.index_box_text{
    width: 60%;
    padding: 20px;
}

.index_box_image{
    align-self: flex-end;
    margin-left: auto;
    padding: 20px;
}

#list_form{
    display:flex;
    justify-content: center;
}

#search_box{
    font-size:1.8em;
    border-radius: 15px;
    width:300px;
    height:35px;
}

.project_list{
    padding:15px;
    display:flex;
    justify-content: space-evenly;
    flex-wrap: wrap;

}

.project{
    display:flex;
    flex-direction: column;
    margin:5px;
    width:400px;
    height:500px;
    border:solid black 3px;
}

.project_img{
    width: 100%;
    height:300px;
}

.project_name{
    background-color:brown;
    display:flex;
    justify-content: center;
    height:10%;
    padding-top:7px;
    border-bottom: solid black 1px;
}

.project_text{
    box-sizing: border-box;
    padding:10px;
    width:400px;
    overflow-y: scroll;
}

#tech_list_container{
    display:flex;
    box-sizing: border-box;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

}

#tech_list{
    display: flex;
    width:75%;
    height:75px;
    flex-direction: column;
    flex-wrap: wrap;
    columns: auto;
    list-style: none;
}

.tech_list_item{
    flex:1 0 33.33%;
}

.tech_list_item label{
    font-size: 1.6em;
}

.tech_list_item input {
    height:15px;
    width:15px;
}

#tech_search{
    
    border-radius: 0;
    font-size: 1.6em;
    width:140px;
    height:50px;
}

#project_content{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 175px 450px 175px;
    grid-gap:5px;
}

#project_page_text{
    font-size: 1.1em;
    display:flex;
    flex-direction: column;
    padding:30px;
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 5;
}

#project_page_top_text{
    padding-bottom: 15px;
    width:90%;
    align-self: flex-start;
    border-bottom:solid black 1px;
}

#project_page_bottom_text{
    align-self: center;
}

#project_page_image{
    width:100%;
    height:100%;
    grid-column-start: 4;
    grid-column-end: 6;
    grid-row-start: 2;
    grid-row-end: 3;
}