@font-face {
    font-family: "product-sans";
    src: url("/lib/fonts/Product\ Sans\ Regular.ttf");
}

@keyframes load {
    0% {
        width: 0%;
    }

    10% {
        width: 10%;
    }

    20% {
        width: 10%;
    }

    30% {
        width: 30%;
    }

    40% {
        width: 30%;
    }

    50% {
        width: 50%;
    }

    60% {
        width: 50%;
    }

    70% {
        width: 70%;
    }

    80% {
        width: 70%;
    }

    90% {
        width: 90%;
    }

    100% {
        width: 100%;
    }
}

body {
    background-color: black;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: white;
    font-family: product-sans;
}

#loadingBar {
    height: 3px;
    width: 0%;
    background-color: white;
    animation: load 10s forwards;
}

#har {
    height: 200px;
    top: 230px;
    /* bottom: 0px; */
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
}

#titleText {
    color: white;
    font-family: product-sans;
    letter-spacing: 0.8px;
    position: relative;
    text-align: center;
    top: 100px;
}

#topText {
    text-align: center;
}

.loadText {
    position: relative;
    text-align: center;
    margin: 0px;
    top: 350px;
    visibility: hidden;
}

#load {
    margin-top: 75px;
    visibility: visible;
}

#blackScreen {
    height: 100%;
    width: 100%;
    position: fixed;
    background: black;
    z-index: 1000;
    opacity: 0;
}