body {
    background-image: url(images/LGG_BG.svg);
    background-color:rgb(124,117,107,0.25);
    background-size: cover;
    font-family: 'Miriam Libre', 'sans-serif';
    color: #7c756b;
    font-weight: 400;
    font-size: 16px;
    width: 100vw;
    height: 100vh;
    margin: 0;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
}

main {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 55px);
}

/* ==================== */
/*       Contact        */
/* ==================== */

.contact {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    max-height: 300px;
    background: #474441 0% 0% no-repeat padding-box;
    box-shadow: 0px 5px 15px #00000029;
    border-radius: 5px;
}

.contact .contact__image {
    border-bottom: 1px solid #7D756C;
    box-sizing: border-box;
    width: 100%;
}

.contact .contact__image,
.contact .contact__info {
    padding: 1.75rem;
}

.contact .contact__info .contact__info__group:not(:last-child) {
    margin-bottom: 1rem;
}

.contact .contact__info p:not(:last-child) {
    margin-bottom: 0.5rem;
}

.contact .contact__info p,
.contact .contact__info a {
    color: #DDDDDB;
}

/* ==================== */
/*        FOOTER        */
/* ==================== */

.footer {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    height: 55px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.footer .footer__usps {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

.footer .footer__usps li:not(:last-child) {
    margin-right: 2.15rem;
}

.footer .footer__usps li p {
    letter-spacing: 0.7px;
    color: #474441;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: bold;
    margin: 0;
    text-align: center;
}

@media only screen and (max-width: 480px) {
    main {
        height: calc(100vh - 115px);
    }
    
    .footer {
        height: 115px;
    }

    .footer .footer__usps {
        flex-direction: column;
    }

    .footer .footer__usps li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}