.toplogo{
    background-image: url("../images/logo.svg")  ;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: black;;
    background-position: center center;
    animation: blur 5s ease-in-out  alternate;
    width: 100vw;
    height: 100vh;
}
.commingson{
    text-align: center;
    font-family:Audiowide , serif;
    font-size: 150px;
    animation: textShine 3s ease-in  forwards;
    animation-iteration-count: 1;
    animation-delay: 5s;
    color: black;
}

@keyframes textShine {
    0% {
        color: black;
    }

    100% {
    color: white;
    }
}@keyframes blur {
    0% {
        filter: blur(50px);
    }

    100% {
        filter: blur(0px);
    }
}
@font-face {
    font-family: "Audiowide";
    src:
            url("../font/Audiowide_Regular.ttf");

}