.projects {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: center;
}

.project-button {
    border-radius: 5px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
    display: block;
    height: 450px;
    overflow: hidden;
    position: relative;
    width: 300px;
}

.project-button img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

@media (max-width: 767px) {
    .projects {
        flex-direction: column;
        padding: 24px 0;
    }

    .project-button {
        aspect-ratio: 2 / 3;
        height: auto;
        width: 85vw;
    }
}