body{
    padding: 0;
    margin: 0;
    background-color: rgb(5, 5, 5);
    color: white;
}
img{
    width: 100%;
}
#bodywrap{
    width: 100%;
}
header{
    position: relative;
    width: 96%;
    padding: 5%;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}
header.scroller{
    padding: 20px;
    position: fixed;
    background-color: rgb(5, 5, 5);
}
#logo{
    font-family: 'Courier New', Courier, monospace;
}
#navbar ul{
    margin: 0;
    padding: 0;
}
#navbar ul li{
    display: inline;
    margin: 0 10px 0 10px;
    padding: 10px;
    transition: 1s;
}
#navbar ul li a{
    transition: 1s;
    padding: 10px;
    color: rgb(196, 173, 44);
    text-decoration: none;
    font-family: sans-serif;
}
#navbar ul li a:hover{
    border: 1px solid rgb(172, 152, 43);
    color: gray;
    border-radius: 5px;
}
#logo{
    font-weight: 900;
    font-size: 30px;
    color: gray;
}
#logo span{
    color: rgb(172, 152, 43);
}
#hamburger{
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-image: url("../images/icon-hamburger.svg");
    background-position: center;
    z-index: 20000;
    display: none;
}
#welcome-section{
    height: 100vh;
}
#welcomewrap{
    padding-top: 50px;
    display: flex;
    justify-content: space-around;
}
#welcome-section-image{
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 10px solid rgb(196, 173, 44);
    overflow: hidden;
}
#welcome-section-image img{
    height: 100%;
}
#welcome-section-text{
    width: 40%;
    color: rgb(172, 152, 43);
    margin-top: 6%;
    font-family: sans-serif;
    margin-left: 5%;
}
#welcome-section-text p{
    font-family:   Verdana, sans-serif;
    font-size: 25px;
    color: gray;
}
#welcome-section-text h1{
    margin: 5px;
    font-size: 60px;
    color: white;
}
#projectscontainer{
    font-family: Arial, Helvetica, sans-serif;
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
#projectwrap h1{
    width: 40%;
    padding-bottom: 10px;
    font-size: 40px;
    margin-left: 10%;
    font-family: Arial, Helvetica, sans-serif;
    border-bottom:2px solid rgb(196, 173, 44) ;
}
.projectimg{
    height: 80%;
}
.projectimg img{
    height: 100%;
}
.project-title{
    width: 90%;
    margin: 10px 0;
    font-weight: 900;
    border: 3px solid rgb(172, 152, 43);
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    transition: 0.2s;
}
.project-title:hover{
    border: 3px solid rgb(196, 173, 44);
    transform: translateY(-4px);
}
.projecttext{
    height: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: grey;
    text-align: center;
}
.projecttext:hover a, .projecttext:hover{
    background: rgb(5, 5, 5);
    color: rgb(196, 173, 44);
}
.projecttext a{
    color: black;
    text-decoration: none;
}
#profile-link{
    display: flex;
    justify-self: center;
    font-family: Arial, Helvetica, sans-serif;
    width: 100px;
    padding: 10px;
    margin: auto;
    color: rgb(196, 173, 44);
    text-transform: uppercase;
    border-radius: 10px;
    text-decoration: none;
    border: 2px solid rgb(196, 173, 44);
}
#profile-link span{
    width: 10%;
    margin-left: 5px;
}
#profile-link svg path{
    fill: rgb(196, 173, 44);
}
#profile-link:hover{
    background: rgba(82, 73, 73, 0.5);
    border: 2px solid rgb(196, 173, 44);
    color: rgb(196, 173, 44);
}
#contactme{
    padding-top: 100px;
    font-family: sans-serif;
}
#contactwrap{
    margin-top: 50px;
    text-align: center;
}
#contactwrap > h1{
    width: 40%;
    text-align: left;
    margin: auto;
    font-size: 40px;
    margin-top: 0;
    border-bottom: 2px solid rgb(196, 173, 44);
    
}
#contact{
    padding-top: 5em;
    width: 100%;
    display: flex;
    justify-content: space-around;
}
#contacttext{
    text-align: left;
    width: 50%;
    padding: 5em;
    padding-top: 0;
}
#contacttext h1{
    font-size: 75px;
}
#contacttext span{
    font-size: 30px;
    color: rgb(184, 173, 110);
}
a.socialicons svg{
    width: 20px;
    height: 20px;
}
a.socialicons svg path{
    fill: rgb(196, 173, 44);
}
input{
    padding: 1em;
    margin-bottom: 10px;
    border-radius: 20px;
    outline: none;
    background: rgb(24, 21, 21);
    border: none;
}
input:hover, input:focus{
    border: 2px solid rgb(117, 108, 56);
}
textarea{
    min-width: 95%;
    max-width: 95%;
    min-height: 300px;
    max-height: 300px;
    outline: none;
    padding: 10px;
    border-radius: 20px;
    background: rgb(24, 21, 21);
    margin-bottom: 10px;
    border: none;
}
textarea:hover, textarea:focus{
    border: 2px solid rgb(117, 108, 56);
}
#formcontainer{
    width: 35%;
    display: flex;
    flex-direction: column;
    padding: 2em;
}
form{
    width: 100%;
    display: flex;
    flex-direction: column;
}
#formcontainer button{
    padding: 10px;
    border-radius: 20px;
    border: 2px solid rgb(196, 173, 44);
    background-color: rgb(196, 173, 44);
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
}
#formcontainer button:hover{
    background-color: rgba(82, 73, 73, 0.5);
    color: rgb(196, 173, 44);
}
#sociallinks{
    display: flex;
    justify-content: center;
}
.socialicons{
    margin: 5px;
}
#imgcont{
    width: 100%;
}
footer{
    padding-top: 5em;
    text-align: center;
}
#footerwrap{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: auto;
}
#footerwrap p{
    color: grey;
}
footer svg{
    margin: auto;
}
footer svg path{
    fill: rgb(172, 152, 43);
}
@media (max-width: 768px){
    #welcomewrap{
        padding-top: 50px;
        display: flex;
        justify-content: center;
        flex-direction: column-reverse;
    }
    #welcome-section-image{
        width: 250px;
        height: 250px;
        border-radius: 50%;
        border: 10px solid rgb(196, 173, 44);
        overflow: hidden;
        margin: auto;
    }
    #welcome-section-text{
        width: 90%;
        color: rgb(172, 152, 43);
        margin-top: 6%;
        font-family: sans-serif;
        padding: 0px 5px;
    }
    #projectscontainer{
        font-family: Arial, Helvetica, sans-serif;
        width: 80%;
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    #projectwrap h1{
        width: 50%;
        padding-bottom: 10px;
        font-size: 40px;
        margin-left: 10%;
        font-family: Arial, Helvetica, sans-serif;
        border-bottom:2px solid rgb(196, 173, 44) ;
    }
    #contact{
        padding-top: 5em;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
    #formcontainer{
        width: 70%;
        margin: auto;
        display: flex;
        flex-direction: column;
        padding: 2em;
    }
    #contactwrap > h1{
        width: 50%;
        text-align: left;
        margin: auto;
        font-size: 40px;
        margin-top: 0;
        border-bottom: 2px solid rgb(196, 173, 44);
        
    }
}
@media(max-width: 550px){
    #welcome-section-text h1{
        margin: 5px;
        font-size: 50px;
        color: white;
    }
    #projectwrap h1{  
        width: 60%;
        font-size: 30px;
    }
    #contactwrap h1{
        width: 60%;
        font-size: 30px;
    }
    #contacttext{
        text-align: left;
        width: 50%;
        padding: 1em;
        padding-top: 0;
    }
    #contacttext h1{
        font-size: 40px;
    }
    #contacttext span{
        font-size: 25px;
    }
}
@media(max-width: 450px){
  
    #navbar{
        position: fixed;
        width: 90vw;
        height: 100vh;
        top: 0px;
        right: 0px;
        border-radius: 5px;
        border: 1px solid rgb(172, 152, 43);
        background-color: rgb(5, 5, 5);
        z-index: 1000;
        display: none;
    }
    #navbar.openmenu{
        display: flex;
        justify-content: center;
        align-items: center;

    }
    #hamburger{
        display: flex;
    }
    #hamburger.openmenu{
        background-image: url("../images/icon-close.svg");
    }
    #navbar ul{
        margin: 0;
        padding: 0;
        text-align: center;
    }
    #navbar ul li{
        display: block;
        margin: 0 10px 0 10px;
        padding: 10px;
        transition: 1s;
    }
    #welcome-section-image{
        width: 150px;
        height: 150px;
        border-radius: 50%;
        border: 10px solid rgb(196, 173, 44);
        overflow: hidden;
        margin: auto;
    }
    #welcome-section-text p{
        font-family:   Verdana, sans-serif;
        font-size: 15px;
        color: gray;
    }
    #welcome-section-text h1{
        margin: 5px;
        font-size: 40px;
        color: white;
    }
    #projectwrap h1{  
        width: 80%;
        font-size: 25px;
    }
    #contact{
        padding-top: 1em;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
    #contactwrap h1{
        width: 80%;
        font-size: 25px;
    }
    #contacttext{
        width: 80%;
    }
    #contacttext h1{
        font-size: 35px;
    }
    #contacttext span{
        font-size: 20px;
    }
}
