@charset "utf-8";


*, *::after, *::before { 
	box-sizing: border-box; 
    margin: 0;
    padding: 0;
}


body {
	display: flex;
	flex-direction: column;
    background-image: linear-gradient(to bottom right, #063852, #011A27);
    min-height: 100vh;
    width: auto;
    font-family: "Arsenal", "Nunito Sans", sans-serif;
    overflow-y: clip;
}

h1 {
    margin: 3rem 0 0.75rem 0;
    font-weight: 600;
    font-size: 4.5vw;
    letter-spacing: 0.4em;
    word-spacing: 0.25em;
    text-transform: uppercase;
    color: #F0810F;
    font-style: italic;
    text-align: center;
}

h2 {
    text-align: center;
    color: #E6DF44;
    text-transform: uppercase;
    font-size: 2.5vw;
    font-weight: 600;
    letter-spacing: 0.4em;
    margin: 0 0 1rem 0;
    font-style: italic;
}

.background {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.background::before {
    background: no-repeat center / 120% url(../img/astralnavigators-background-removed.png);
    opacity: 0.3;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
}

.graph {
    display: none;
}

.contact-label {
    display: inline-block;
    color: #E6DF44;
    width: 25vw;
    font-size: 1.75vw;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.contact-label a, 
.contact-label a:link, 
.contact-label a:visited, 
.contact-label a:active {
    color: #E6DF44;
    text-decoration: none;
/* 
    pointer: cursor;
 */
}
.contact-label a:hover {
    color: #e5c100;
}

.contact-label a::after {
    content: '\00BB';
    display: inline;
    margin-left: 2px;
}

.footer {
	margin: auto 0 0 0;
    height: 5vw;
    background: #011A27;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

