 /* styles applied to all elements */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* document level styles */
html {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 10px;
}

/* global styles */
a {
    text-decoration: none;
    color: #000000;
}

/* body element */
body {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #ffffff;
    color: white;
    font-size: 1.8rem;
}

/* logo styles */
.t1v-logo {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 50px;
}

.ac-logo {
    width: 500px;
    max-width: 35vw;
    margin-bottom: 2rem;
}

/* button group styles */
.buttons {
    width: 50vw;
    padding: 2rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

/* button styles */
.btn {
    padding: 2.25rem;
    margin: 1rem 0;
    color: #2c5bb4;
    border-bottom: 4px solid #2c5bb4;
    border-radius: .25rem;
    transition: all 200ms ease;
}

.btn h3 {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: .75rem;
    font-weight: 600;
}

.btn p {
    font-size: 1.5rem;
    font-weight: 300;
    color: #837e7e;
}

.btn:hover {
    background-color: #fbfbfb;
    box-shadow: 0px 3px 10px #28282855;
    border-bottom: 0px solid #2c5bb4;
}

@media screen and (max-width: 768px) {
    .ac-logo {
        max-width: 75vw;
    }

    .buttons {
        width: 75vw;
    }
}
