body {
    background-color: #4F4F4F;
    color: white;
    font-family: "Roboto Light", sans-serif;
    font-size: 20px;
    line-height: 26px;
}

.wrapper {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 60vw;
}

.container div {
    flex: 1;
    align-self: center;
    padding: 1em;
}

h1 {
    font-size: 1.20em;
    line-height: 1em;
    text-transform: uppercase;
    margin: 2em 0 0;
}

h2 {
    color: #AB9655;
    font-size: 3em;
    line-height: 1em;
    margin: 0;
    padding: 0;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    color: #efefef;
    text-decoration: underline;
}

address {
    font-style: normal;
    margin: 0;
}

@media (max-width: 600px) {
    .wrapper {
        height: auto;
        width: auto;
    }
    .container {
        flex-direction: column;
        max-width: 100vw;
    }

    h2 {
        font-size: 2.5em;
    }
}