@charset "UTF-8";
/* CSS Document */
/*
Colors:
Tan: #F7ECB6
Maroon: #40242E

font-family: brandon-grotesque, sans-serif;
font-weight: 300;
font-style: normal;

font-family: brandon-grotesque, sans-serif;
font-weight: 100;
font-style: normal;
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: brandon-grotesque, sans-serif;
    font-weight: 100;
    font-style: normal;
    line-height: 1.5;
}
.header {
    display: block;
    position: relative;
    height: 100vh;
    background-color: #40242E; /*Maroon*/
    text-align: center;
}
.box {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.heading-primary {
    color: #F7ECB6; /*Tan*/
    text-transform: uppercase;
    letter-spacing: .3em;
    backface-visibility: hidden;
}
.heading-primary-main {
    display: block;
    font-size: .4em;
    
    animation: MoveOnTop 3s cubic-bezier(0,.33,.13,1);
    animation-name: MoveOnTop;
}
.heading-primary-sub {
    display: block;
    font-size: .8em;
    margin-top: .6em;
    margin-bottom: .6em;
    
    
    animation: MoveOnTop 3s cubic-bezier(0,.33,.13,1);
    animation-delay: .25s;
    animation-fill-mode: backwards;
}


.heading-primary-sub2 {
    display: block;
    font-size: .4em;
    
    animation: MoveOnTop 3s cubic-bezier(0,.33,.13,1);
    animation-delay: .5s;
    animation-fill-mode: backwards;
}


@keyframes MoveOnTop {
    0%{
        opacity: 0;
        transform: translateY(6rem);
        
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
    
}
