*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
}
body{
    background-color: rgb(14, 9, 9);
    color: rgb(201, 173, 173);
    margin: 0 2rem;
}
img{
    width: 100%;
    height: 100%;
}
h2{
    margin: 2rem 0;
}

main{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.landing-image{
    position: relative;
}
.landing-image img{
    opacity: .8;
    
}
main h1{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(160, 4, 4);
}


.projects-section{
    min-height: 100vh;
}
.projects-section h2{
    margin: 2rem 0;
    
}
.project h3{
    margin: 1rem 0;
    
}

/* .project-img{
    aspect-ratio: 16 /9;
} */
.project-title-link{
    display: flex;
    justify-content: space-around;
}
.project-title-link h3{
    font-size: 1.5rem;

}
i{
    font-size: 1.5rem;
}
footer{
    margin-top: 2rem;
}

@media screen and (min-width: 767px){
    body{
        margin: 0 40%;
    }
}