/* ---------- Contact Me ---------- */

.container.contact-me {
    background: linear-gradient(90deg, rgba(20, 20, 20, 1) 0%, rgba(38, 38, 38, 1) 50%, rgba(66, 66, 66, 1) 100%);
}

.container.contact-me .content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-bottom: 2rem;

    gap: 2rem;
}

.contact-aside {
    display: flex;
    justify-content: center;
    width: 40%;
}

.contact-image {
    width: 100%;
    max-width: 500px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 40%;
}

@media (max-width: 768px) {
    .contact-aside {
        display: none;
    }

    .contact-form {
        width: 100%;
    }
}