html {
    --footer-height: 60px;
}
/* HEADER */

/* MAIN */

main p {
    margin-bottom: 1rem;
}

#section-contact {
    height: calc(100vh - var(--header-height) - var(--footer-height));
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 5vh;
}

#section-contact p {
    text-align: center;
}

#email-link:hover {
    color: #EFCFB6;
}

.socials-image-ig {
    height: 40px;
    width: 40px;
    background-image: url(../assets/icons/ig_fill_round_wh.png);
    background-repeat: repeat;
    background-size: cover;
    margin: 15px auto 1rem auto;
}

.socials-image-fb {
    height: 40px;
    width: 40px;
    background-image: url(../assets/icons/fb_fill_round_wh.png);
    background-repeat: repeat;
    background-size: cover;
    margin: 15px auto 0 auto;
}

.section-divider {
    margin-top: 0;
    margin-bottom: 0;
}

/* FOOTER */

footer {
    height: var(--footer-height);
}

.wrapper-footer p {
   line-height: var(--footer-height);
}


