body{
    margin: 0;
    box-sizing: border-box;
    background-image: linear-gradient(45deg,#00203FFF,rgb(104, 154, 132));
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: rgb(237, 232, 232);
    font-family: "Playfair Display", serif;
}
h1{
    font-size: 50px;
    text-align: center;
}
.projects{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    position: relative;
}
.project{
    color: white;
    backdrop-filter: blur(12px);
    border: none;
    border-radius: 5px;
    font-size: 150%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 6em;
    margin: 2%;
    box-shadow: 2px 2px 10px white;
    width: 20%;
    background: rgba(255, 255, 255,0.3);
    cursor: pointer;
}
@media screen and (max-width:1200px){
    .project{
        width: 25%;
    }
}
@media screen and (max-width:800px){
    .project{
        width: 40%;
    }
}
@media screen and (max-width:400px){
    .project{
        width: 90%;
        font-size: 120%;
        height: auto;
    }
}