body, html {
    height: 100%;
    margin: 0;
    font: 400 15px/1.8 "Lato", sans-serif;
}

.bg {
    height: 100%;
    opacity: 0.65;
    background-image: url('avocado-small.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.header {
    position: relative;
    left: 0;
    top: 25%;
    width: 100%;
    text-align: center;
}

.body {
    position: absolute;
    left: 0;
    top: 65%;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.title {
    margin: 0;
    padding: 1.2rem 2rem 1.2rem 2rem;
    background-color: #111;
    color: #fff;
    padding-right: 1rem;
    font-size: 5rem;
    font-size-adjust: inherit;
    letter-spacing: 1rem;
    text-transform: uppercase;

}


.subtitle {   
    margin: 0;
    padding: 1.2rem 2rem 1.2rem 2rem;
    background-color: #111;
    padding-right: 1rem;
    font-size: 4rem;
    color: #c1c1c1;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
}

.body-container {
    background-color: #dfecb4;
    color: #516319;
    width: fit-content;
}

.naming {
    margin: 0;
    padding: 1.2rem 2rem 1.2rem 2rem;
    padding-right: 1rem;
    font-size: 3rem;
    letter-spacing: 0.3rem;
    text-transform: capitalize;
}

.email a {
    font-size: 1.5rem;
    letter-spacing: normal;
    text-transform: none;
    letter-spacing: 0.1rem;
    text-decoration: none;
    color: inherit;
}

.email a:hover {
    text-decoration: underline;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
}

.copyright {
    color: #111;
    font-size: medium;
}

.photo-ref a {
    color: #111;
    font-size: small;
    text-decoration: none;
}


@media screen and (max-width: 851px) {
    .title {
        font-size: 7vw;
    }

    .subtitle {
        font-size: 5vw;
    }

    .naming {
        font-size: 3vw;
    }

    .email a {
        font-size: 2.5vw;
    }

    .copyright {
        font-size: 1.5vw;
    }

    .photo-ref a {
        font-size: 1.3vw;
    }
}