
body{
    margin: 0;
    background-color: #133072;
    --subtitle-offset: 1em;
    --highlight-color: #f90052;
    --off-white: #f4f4f4;
    --custom-yellow: #edc011;
    --custom-red: #e20913;
    --custom-blue: #2d4294;
    --custom-gray: #a5a5a4;
}


#meta-info {
    writing-mode: vertical-lr;
    font-family: 'Barlow Semi Condensed', sans-serif;
    text-transform: uppercase;
    align-self: end;
    justify-self: end;
    grid-area: 1 / col3-start / last-line / 2;
    font-size: 0.95em;
    color: var(--off-white);
}

#header-content {
    grid-column: 2;
    grid-row: 2;
    justify-self: center;
    align-self: center;
}

.header-subtext {
    font-family: "Barlow Semi Condensed", sans-serif;
    font-size: 2em;
    color: var(--off-white);
    padding-left: var(--subtitle-offset);

}

.header-subtext a {
    font-size: 1em;
    text-decoration: none;
    color: var(--off-white);
}

.header-subtext a:hover {
    color: var(--highlight-color);
}

/* Main Name markup */
#header-name {
    font-family: 'Abril Fatface', serif;
    font-size: 8em;
    line-height: 0.8em;
    color: var(--highlight-color);
}

#header-refs {
    padding-top: 0.5em;
}

.navigator {
    font-family: "Barlow Semi Condensed", sans-serif;
    color: var(--off-white);
    align-self: center;
    border: 0.15em solid var(--off-white);
    padding: 0.5em;
    text-decoration: none;
}

.navigator:hover {
    color: var(--highlight-color);
    border: 0.1em solid var(--highlight-color);
}

#academic-nav {
    grid-column: 3;
    grid-row: 2;
    justify-self: end;
}

#other-nav {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;;
}

.content {
    width: 100vw;
    height: 100vh;
    padding: 1.2em;
    box-sizing: border-box;
}

#main-grid{
    display: grid;
    grid-template-columns: 20% 60% 20%;
    grid-template-rows: 35% 30% 35%;
}

/* ----------------------------------------------
 * Generated by Animista on 2019-10-14 22:24:19
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation tracking-in-expand
 * ----------------------------------------
 */
.tracking-in-expand {
    -webkit-animation: tracking-in-expand 1.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    animation: tracking-in-expand 1.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

@-webkit-keyframes tracking-in-expand {
    0% {
        letter-spacing: -0.5em;
        opacity: 0;
    }
    40% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
    }
}
@keyframes tracking-in-expand {
    0% {
        letter-spacing: -0.5em;
        opacity: 0;
    }
    40% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
    }
}


