html
{
    height: 100%;
}

@font-face { font-family: Fieldwork; src: url('fieldwork-geo-regular.otf'); }

body {
    margin: 0;
    min-height: 100%;
    font-size: 1.2rem;
    color: #163D67;
    font-family: Fieldwork;
    display: flex;
    justify-content: center;
    background: linear-gradient(45deg, rgba(255,255,255,1) 0%, rgba(207,225,244,1) 100%);
}

a {
    text-decoration: none;
    color: #163D67;
}

.container
{
    width: auto;
    margin: auto;
}

#logo-wrapper {
    max-width: 768px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

#logo {
    border-right: 2px solid #00326A;
}

#logo img
{
    width: 100%;
    max-width: 320px;
}

#address {
    text-transform: uppercase;
}

#logo, #address {
    display: flex;
    align-items: center;
    padding: 30px;
}

.info-text
{
    text-align: center;
    margin-top: 50px;
}

.button {
    padding: 10px 15px;
    border-radius: 5px;
    border: 2px solid #163D67;
    transition: .2s ease;
}

.button:hover {
    background: #163D67;
    color: white;
}

@media screen and (max-width: 768px)
{
    #logo-wrapper
    {
        grid-template-columns: 1fr;
    }

    #logo {
        border-right: none;
    }

    #address {
        text-align: center;
    }

    #logo, #address {
        justify-content: center;
    }
}