body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    background-image: url('mountain.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
    margin: 0;
    font-weight: 100;
    color: #100E0F;
}

.body-content {
    margin: 4rem;
}


h1 {
    font-size: 60pt;
    font-family: "Zilla Slab", serif;
    margin-bottom: 2rem;
    color: #161616;
    font-weight: 400;
}

h2 {
    font-size: 1.5rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    color: #444542;
}

p {
    font-size: 1rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 100;
    color: #8B8E87;
    max-width: 50%;
}

a {
    color: #444542;
}

footer {
    justify-self: end;
    margin-bottom: 0;
    margin-top: auto;
}


@media (max-width: 768px) {
    .body-content {
        margin: auto;
    }

    .mobile-background {
        background-color: #f7eeef;
        opacity: 85%;
        border-radius: 10px;
        margin: 0px 2rem;
        padding: 2rem;
    }

    h2 {
        font-weight: 500;
    }

    p {
        color: black;
        max-width: 100%;
        font-weight: 400;
    }

}