body {
    min-height: fit-content;
}

.parallax {
    /* background-image: url("../imgs/contact.jpg"); */
    height: 20vh;
}

.contacts {
    padding: 0;
}

.content {
    padding: 5rem 3rem;
    gap: 1rem;
}

.content h1 {
    align-self: baseline;
    font-weight: bold;
    margin-bottom: 2rem;
}

.content div {
    display: flex;
    align-items: center;
}

.content div img {
    width: 10%;
}

.content div p {
    font-size: 1.5rem;
    margin-left: 2rem;
    cursor: pointer;
}

footer {
    width: 100%;
    z-index: 1000;
    position: fixed;
    bottom: 0;
    display: flex;
    flex-direction: column;
}

.menu-link {
    margin-top: 0;
}

#top-left-svg {
    position: absolute;
    top: -2%;
    left: -16%;
    width: 50%;
    transform: rotate(-8deg);
}

#top-right-svg {
    display: none;
    position: absolute;
    width: 29%;
    top: 41%;
    right: 0;
}

.cls-1 {
    fill:var(--teal);
}

@media (min-width: 768px) {
    
    #top-left-svg {
        display: none;
    }

    #top-right-svg {
        display: block;
        z-index: 1030;
    }

    .parallax {
        background-image: url("../imgs/contact.jpg");
        background-attachment: scroll;
        height: 50vh;
    }

    .content {
        align-items: flex-start;
        padding-left: 50px;
        padding-bottom: 120px;
    }

    .content h1 {
        font-size: 5rem;
        font-family: "Futura Heavy";
    }
    
    .content div img {
        width: 5%;
    }

    .content div p {
        font-size: 2rem;
        font-family: "Futura Book";
        font-weight: bolder;
        margin-left: 3rem;
    }

    .cls-1 {
        fill:var(--magenta);
    }

    footer {
        flex-direction: row;
        justify-content: center;
    }
}