.top {
    height: min(100vh, 100vw);
    position: relative;
}
.top .bg-image {
    top: 0;
    height: 100%;
    background-image: url("https://images.unsplash.com/photo-1496150458551-140441714f2f?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80");
    background-size: cover;
    background-position:center;
    background-repeat: no-repeat;
    filter: blur(6px);
    -webkit-filter: blur(6px);
}
.page-top {
    position: absolute;
    top: 0;
    height: 100%;
    padding-top: 30vh;
    width: 100%;
    background-color: #00a9e220;
    text-align: center;
    font-size: 150%;
}
.content {
    background: rgb(10, 50, 63);
    padding: 4rem 5%;
}
.content-even {
    background: rgb(6, 30, 38);
}
.boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
@media only screen and (max-width: 768px) {
    .boxes {
        flex-direction: column;
        gap: 1rem;
    }
}
.boxes > div {
    flex: 1 1 28%;
    min-width: 250px;
    border-radius: 0.5rem;
    margin: 0;
    padding: 2rem;
    text-align: left;
    box-sizing: border-box;
}
@media only screen and (max-width: 1200px) {
    .boxes > div {
        flex-basis: 45%;
        max-width: 48%;
    }
}
@media only screen and (max-width: 768px) {
    .boxes > div {
        flex-basis: 100%;
        max-width: 100%;
    }
}
.content .boxes div {
    background: rgb(6, 30, 38);
}
.content-even .boxes div {
    background: rgb(10, 50, 63);
}
@media only screen and (max-width: 768px) {
    .content {
        padding: 3rem 1rem;
        padding-top: 4rem;
    }
}
.project {
    display: inline-block;
    background-color: aqua;
    color: #000000;
    height: 200px;
}
