.contact-container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 3rem 0;
}

.contact-container h1 {
    font-size: 2.5rem;
    font-weight: 900;

    color: var(--mauve);
    text-shadow: 0 0 3rem var(--mauve);
}

.contact-container p {
    margin-bottom: 0.5rem;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.contact-links .logo {
    width: 10rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 5px 5px 0.5rem rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-links .logo:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 0 1rem var(--secondary-color); */
}

.contact-links .logo img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}