*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
::selection{
    background: #fa8703;
}
.header{
    padding: 3%;
    display: flex;
    flex-direction: column;
    height: 100vh;
    align-items: center;
    justify-content: center;
}
.navbar{
    display: none;
    position: fixed;
    background-color: black;
    color: white;
    width: 100%;
    height: 10vh;
    align-items: center;
    justify-content: space-between;
    animation: enter 300ms ease-in-out 0s 1 ;
}

@keyframes enter {
    0% {
        transform: translateY(-40px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.header_nav{
    display: flex;
    height: 10vh;
    align-items: center;
    justify-content: space-between;
}
a{
    text-decoration: none;
    color: inherit;
}
.show{
    display: flex;
}
.hide{
    display: none;
}
.navbar_image{
    width: 100%;
    padding: 10px;
}
.navbar_links, .navbar_links1{
    display: flex;
    list-style: none;
    font-size: 90%;
    font-weight: lighter;
}
.navbar_links li, .navbar_links1 li{
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    border: 3px solid transparent;
}
.navbar_links li:hover{
    border-bottom: 3px solid black;
}
.navbar_links1 li:hover{
    border-bottom: 3px solid white;
}
.header--content{
    display: flex;
    flex-direction: column;
    width: 80%;
    height: 90vh;
    justify-content: center;
}
section{
    padding: 30px;
}
.about{
    display: flex;
    margin-top: 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.about_heading{
    padding: 20px;
    margin-bottom: 10px;
}
.myworks{
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.myworks_heading{
    padding: 30px;
}
.myworks_grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 3%;
}
.work_img{
    width: 100%;
}
.work_container{
    width: 100%;
    background-color: white;
    box-shadow: 10px 10px 10px #e0e0e0;
    min-height: fit-content;
}
.work_heading{
    font-size: 22px;
    padding: 10px;
}
.work_description{
    font-size: 15px;
    padding: 10px;
    background-color: #f5f5f5;
}
.contact{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #e0e0e0;
    background-color: #000000ee;
    background-position: right;
    background-image: url(./images/my\ Photo.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-blend-mode: overlay;
    height: 60vh;
}
@media (max-width: 398px) {
    .myworks_grid{
        grid-template-columns: none;
    }
}
/*                */
/* PRODUCTS PAGE */
/*              */
.projects{
    padding: 3%;
    display: flex;
    flex-direction: column;
    height: 100vh;
    align-items: center;
    justify-content: center; 
}
.projects_title{
    font-size: 3rem;
}
.projects--content{
    display: flex;
    flex-direction: column;
    width: 80%;
    height: 90vh;
    justify-content: center;
}