@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Covered+By+Your+Grace&display=swap');
/*font-family: 'Open Sans', sans-serif; */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


a{
    text-decoration: none;
    color: #383C3B;
    transition: all 0.2s ease-in-out;
}
img{
    max-width: 100%;
}

a img{
    width: 70px;
}

.container {
    margin: 0 auto;
    background-color: #8FCD00;
    width: 100%;
}

.header {
    padding: 10px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.menu-container {
    display: flex;
    gap: 53px;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    text-transform: uppercase;

}

.menu-container a{
    color: #002262;
}

ul{
   list-style: none; 
}
.menu-container a:hover{
    color: #3D91CD;
}



.heading {
    font-family: 'Covered By Your Grace', cursive;
    font-size: 90px;
    text-align: center;
    padding: 30px;
    color: #8FCD00;
}

.portfolio-work-a{
    display: flex;
    width: 100%;
    height: 24.5vw;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: center;

}

.portfolio-work-b{
    display: flex;
    width: 100%;
    height: 25vw;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: center;

}


.portfolio-work-c{
    display: flex;
    width: 100%;
    height: 23.7vw;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: center;

}

.creative-work-a{
display: flex;
justify-content: center;
width: 100%;
gap: 10px;
height: 40vw;


}

.creative-work-b{
    display: flex;
    justify-content: center;
    width: 100%;
    height: 40vw;
    gap: 10px;
    margin-bottom: 160px;
    
}
    


















footer{
    background-color: #002262;
    width: 100%;
    /* height: 100%; */
    position: fixed;
    bottom: 0;
    
}

.contact-me {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.footer-content {
    color: white;
    font-family: 'Open Sans', sans-serif;
} 

.copyrights {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 10px;
}

.icons{
    font-size: 25px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}


footer a {
    color: white;
}

footer a:hover {
    color: #8FCD00;
    transition: all 0.2s ease-in-out;
}