.main-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
@media screen and (width < 700px) {
    .main-contact {
        grid-template-columns: 1fr;
        margin-top: var(--logoHeight);
    }
}

.contact_content-text a {
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease;
}
.contact_content-text a:hover {
    transform: translateX(0.5rem);
    transition: transform 0.2s ease;
}

.contact_content {
    grid-column: 2;
}
.cover {
    width: 60%;
    margin: 2rem 2rem 2rem 0rem;
}
@media screen and (width < 700px) {
    .contact_content-text {
        margin: 1rem;
    }
    .cover {
        width: 100%;
    }
}