/* Azonix Branding Font */

@font-face {
    font-family: 'Azonix';
    src: url('./Azonix.otf') format('opentype')
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu Condensed', sans-serif;
    font-size: 18px;
    overflow: hidden;
}

body {
    background-color: #000000;
    min-height: 100vh;
}


/* .hero-video {
    max-width: 100vw;
    height: auto;
} */

@media (min-aspect-ratio: 16/9) {
    .hero-video {
        width: 100vw;
        height: auto;
    }
}

@media (max-aspect-ratio: 16/9) {
    .hero-video {
        width: auto;
        height: 100vh;
    }
}


/* Setting brand-text */

h1 {
    color: white;
    font-size: 10vw;
    font-weight: lighter;
    font-family: 'Azonix';
    letter-spacing: 0.2em;
    /* -webkit-text-stroke: 4px black; */
    /* width and color */
}


/* Loading Screen */

#loading {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100vw;
    height: auto;
    background-color: #5f7d95;
    background-image: url("../img/loading.gif");
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: inset 0 0 100px black;
}


/* Centered on Page */

.centered {
    position: absolute;
    width: auto;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 100;
}


/* Cool buttons */

a {
    font-family: 'Azonix';
    color: #FFFFFF;
    text-decoration: none;
    vertical-align: middle;
}

.button {
    display: inline-block;
    border-radius: 4px;
    background-color: rgb(0, 43, 90);
    border: none;
    color: #FFFFFF;
    text-align: center;
    vertical-align: middle;
    font-size: 28px;
    padding: 10px;
    width: fit-content;
    height: auto;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}

.button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.button span:after {
    content: '  \1F680';
    position: absolute;
    opacity: 0;
    top: -5px;
    right: -20px;
    transition: 0.5s;
}

.button:hover span {
    padding-right: 25px;
}

.button:hover span:after {
    opacity: 1;
    right: 0;
}

.button1 {
    display: inline-block;
    border-radius: 4px;
    background-color: rgb(0, 43, 90);
    border: none;
    color: #FFFFFF;
    text-align: center;
    vertical-align: middle;
    font-size: 28px;
    padding: 10px;
    width: fit-content;
    height: auto;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}

.button1 span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.button1 span:after {
    content: '  \1F47E';
    position: absolute;
    opacity: 0;
    top: -5px;
    right: -20px;
    transition: 0.5s;
}

.button1:hover span {
    padding-right: 25px;
}

.button1:hover span:after {
    opacity: 1;
    right: 0;
}


/* Footer */

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    padding: 10px;
    width: 100%;
    background-color: none;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: right;
    vertical-align: middle;
    z-index: 100;
}

.footer span {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
}

.footer a {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
}