@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');


*{
    font-family: 'Poppins', sans-serif;
    color: whitesmoke;
}

body{
    background-color: black;
}
.cover
{
    margin: 80px 0px;
  text-align: center;

}

#banner
{
    height: 40vh;

}

#sec-1
{
    text-align: center;
}

#sec-2
{
    margin-top: 50px;
    text-align: center;
 
}

.proj{
    display: flex;
    width: 80%;
    margin-left: 10%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap:wrap;
}

.project-content
{
    transition: transform 750ms cubic-bezier(.5,0,.5,1),
    opacity 250ms linear;
    background-size: 20rem;
    background-repeat: no-repeat;
   
    width: 300px;
    height: 200px;
    background-color: #F5F5F5;
    margin: 20px;
    border: 3px solid white;

    box-shadow: 0.5rem 0.5rem #A6A6AD, -0.5rem -0.5rem #6C63FF;
}

.project-content h3{
    color: black;
}


.project-content:hover
{
    transform: scale(1.2);
    
}


.btn
{
    margin-top: 30px;
}

#sec-3
{   
    margin-top: 50px;
    text-align: center;
}
.blog
{
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
}
.blog-post
{
    transition: transform 750ms cubic-bezier(.5,0,.5,1),
    opacity 250ms linear;
    width: 60%;
    padding: 1rem;
    background-color: #F5F5F5;
    margin: 20px;
    border: 3px solid white;
    
    box-shadow: 0.5rem 0.5rem #A6A6AD, -0.5rem -0.5rem #6C63FF;
}

.blog-post p{
    color: black;
}

.blog-post:hover

{
    transform: scale(1.2);
    
}

.images
{
   
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 2rem;
    


}
.btn-project-list
{
    margin: 3rem;
    padding: 0.5rem;
}


.project-list
{
 
    display: flex;
    flex-direction:row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 10rem;
    
}
#title
{
    color: black;
}

footer
{
    padding: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
}

