:root {
    --background: #022b3aff;
    --shade-3: rgb(10, 61, 71);
    --shade-2: #bfdbf7ff;
    --shade-1: #e1e5f2ff;
    --text: #ffffffff;
}

@font-face {
    font-family: Hirosht;
    src: url("../font/HIROSHT.TTF");
}

@font-face {
    font-family: Alpha-Light;
    src: url("../font/Alpha-Light.otf");
}

@font-face {
    font-family: Alpha-Medium;
    src: url("../font/Alpha-Medium.otf");
}

@font-face {
    font-family: Aerial;
    src: url("../font/Aerial_Demo.ttf");
}

* {
    margin: 0;
    padding: 0;

    color: var(--text);
    /* overflow-x: hidden; */
}

html {
    background-color: var(--background);
    box-shadow: inset 0 0 200px black;
    min-height: 100vh;

    /* max-height: 100vh; */
    min-width: 100%;
    overflow-x: hidden;
}

body {

    min-height: 100vh;
    /* max-height: 100vh; */
    overflow-x: hidden;
    /* width: 100vw; */
    z-index: -1000;
}

#background-img-OLD{
    object-fit: cover;
    position: fixed;
    width: 100%;
    height: 100%;
    max-width: 100vw;

    background-image: url("/img/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    /* background-blend-mode: lighten; */
    z-index: -1001;
    background-color: var(--background);
    background-position: center center;
    overflow: hidden;

    opacity: 10%;
}

#background-img{
    object-fit: cover;
    width: 100vw;
    height: 20%;
    min-height: 50px;
    max-height: 200px;

    background-image: url("/img/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    /* background-blend-mode: lighten; */
    z-index: -1001;
    background-color: var(--background);
    background-position: center center;
    overflow: hidden;

    margin-bottom: 20px;
    opacity: 50%;
}

@media only screen and (max-width: 650px) {
    .home-nav {
        flex-direction: column;
    }

    .grid-home-title {
        font-size: 2em !important;
    }
}

.container-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-container {
    display: flex;
    flex-direction: column;
    justify-content: center;

    width: 60vw;
    min-height: fit-content;
    height: 60vh;
    margin-top: 20vh;

    min-width: fit-content;
}

.home-nav {
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.grid-home-title {
display: flex;
flex-direction: column;

    text-shadow:
        0 0 10px black,
        0 0 20px black,
        0 0 40px black;
    font-family: Hirosht !important;
    font-size: 4em;
    filter: saturate(80%);

    grid-row: 1 / 2;
    grid-column: 1 / 8;

    user-select: none;

    /* padding-bottom: 20vh; */
    padding-bottom: 20px;
    height: 30%;
}

.grid-home-subtitle {
    width: 100%;
    text-align: center;
    font-family: Alpha-Medium;
    font-size: 0.3em;
    text-shadow: 0 10px 30px black;
}
.grid-home-button {
    font-family: Alpha-Medium;
    font-size: 1.4em;
    padding: 10px;

    text-decoration: none;
    text-shadow: 0 0 20px black,0 0 20px black;
    /* background-color: var(--background); */
    border-radius: 20px;

    transition: all 0.2s ease-in-out;

}
.grid-home-button:hover{
    /* box-shadow: 0 0 20px black; */
    transition: all 0.2s ease-in-out;
    text-shadow: 0 0 20px white,0 0 20px white;
}