body, html {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Montserrat", sans-serif;
}

main {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100vh;
    align-items: center;
}

main > div.content {
    flex-grow: 1;
    order: 2;
    display: flex;
    flex-direction: column;
    padding: 0 40px;
}

main > div.content h1 {
    font-size: 82px;
    margin: 0;
    font-weight: 900;
    text-transform: uppercase;
}

main > div.content p {
    font-size: 28px;
    margin: 0;
} 

main > div.content footer {
    margin-top: 20px;
}

main > div.content footer addr {
    font-size: 18px;
} 

main > div.content footer addr a {
    color: #859B40;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-underline-position: left;
}

main > div.background {
    background: url('background.jpg');
    background-size: cover;
    background-position-x: center;
    background-position-y: bottom;
    width: 40%;
    height: 100%;
    order: 1;
}

main > div.background::after {
    content: "";
}