/* Font imports */
@import url('https://fonts.googleapis.com/css2?family=Fasthand&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fuzzy+Bubbles&display=swap');

html,body{
    height: 100%;
    width: 100%;
}
body{
    overflow: hidden;

    background-color: #151515;
}
#title-logo{
    font-family: 'Fasthand', cursive;
    color: #6494AA;
    
}
#coming-soon-text{
    font-family: 'Fuzzy Bubbles', cursive;

    animation-name: text-color-change;
    animation-duration: 1.5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
}
@keyframes text-color-change {
    from{
        color: #0000AA;
    }
    to{
        color: #AA0000;
    }
}

#loading-spinner{
    margin-top: 12rem;
}