html {
    height: 100%;
    margin: 0;
    background: url("/lavant-background.jpg") no-repeat center center fixed;
    background-size: cover;
}

body {
    height: 100%;
    margin: 0;
}

p {
    color: #333333;
    font-size: 14px;
    margin-bottom: 1.25rem;
}

a {
    color: #2f5597;
    transition: all 0.5s ease;
}

a:hover {
    color: gray;
}

.content-wrap {
    height: 100%;
    min-height: 100%;
}

.content {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

.box-wrap {
    max-width: 600px;
    max-height: 100%;
}

.box {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 2px;
    box-shadow: 0 2px 4px 0 rgba(50,50,93,.1);
    padding: 2rem;
    z-index: 100;
}

.box img {
    max-width: 100%;
    padding: 0 10%;
    width: 80%;
}

.logo {
    border-bottom: 2px solid gray;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
}

.footer {
    border-top: 2px solid gray;
    margin-top: 2rem;
    padding-top: .5rem;
    text-align: center;
}

.footer p {
    margin-bottom: 0;
}

.header-text {
    font-size: 16px;
    text-align: center;
}

.buttons {
    display: flex;
    justify-content: center;
}

.buttons a {
    background-color: #2f5597;
    border-radius: 2px;
    color: #ffffff;
    font-size: 15px;
    margin: 0 1rem;
    max-width: 300px;
    padding: .5rem 1.5rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.5s ease;
    width: 120px;
}

.buttons a:hover {
    background-color: #333333;
}

.copyright {
    color: white;
    font-size: .8rem;
    margin-top: .5rem;
    text-align: center;
}

@media only screen and (max-width: 64em) {
    .content-wrap {
        /*height: auto;*/
        padding-top: 3rem;
    }
    .content {
        display: block;
    }
    .box-wrap {
        margin: 0 auto;
    }
    .copyright {
        margin: .5rem 0 0 0;
        padding-bottom: 1rem;
    }
}

@media only screen and (max-width: 40em) {
    .box {
        margin: 1rem;
    }
    .buttons {
        display: block;
    }
    .buttons a {
        margin: .5rem auto 1rem auto;
        display: block;
        text-align: center;
    }
    .content-wrap {
        height: auto;
        padding-top: 1rem;
    }
    .copyright {
        margin: 0 0 0 1rem;
        padding-bottom: 1rem;
    }
    .show-for-medium {
        display: none;
    }
    html, body, .content-wrap, .content {
        min-height: 100%;
    }
}
