* {
    font-family: josefin-sans, Helvetica, Arial, sans-serif;
    color: #ffffff;
    text-align: center;
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
}
h1 {
    font-size: 2em;
    line-height: 100%;
    margin-bottom: 10px;
}
h1 i {
    color: #cc7832;
}
h2 {
    font-size: 1.25em;
    margin: 0;
}
p {
    font-size: .9rem;
}

.vh100 {
    position: relative;
    width: 100vw;
    height: 100vh;
}
.container {
    padding: 32px;
}
.vee-button {
    display: flex;
    margin: 1rem 0;
}
.vee-button a {
    padding: 1rem 1rem;
    border-radius: 50px;
    text-align: center;
    text-transform: uppercase;
    font-size: .9rem;
    line-height: 100%;
    position: relative;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    color: #15182b;
    text-decoration: none;
    display: block;
    width: 100%;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}
.vee-button a:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: transform 0.3s ease-in-out;
    transform: scaleX(0);
    transform-origin: 0 50%;
    background-color: #2e6db6;
    will-change: transform;
}
.vee-button a:hover span {
    color: #ffffff;
}
.vee-button a:hover:before {
    transform: scaleX(1);
}
.vee-button a span {
    color: #15182b;
    transition: all 0.5s ease-in-out;
}

@media screen and (min-width: 0px) {

    figure.logo {
        max-width: 300px;
        margin: 0 auto;
    }

    figure.logo img {
        width: 100%;
        height: auto;
    }
}

@media screen and (min-width: 641px) {
    .container {
        max-width: calc( 768px - 64px );
        padding: 32px;
        position: absolute;
        top: 64px;
        left: 50%;
        transform: translateX(-50%);
    }
}