@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');
html {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

body {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin: 0;
    background-color:#000;
    color:#Fff;
    overflow: hidden;
    
}

.main-content{
    width:100vw;
    height: 200px;
    display: grid;
    justify-content: center;
    justify-items: center;
    align-items: center;
    position: fixed;
    left:0;
    top:calc(50vh - 150px);
    z-index: 2;
    margin:auto;
}

a{
    color:#789;
}

canvas {
    margin: auto;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw!important;
    height: auto!important;
    z-index: 0;
    filter: invert(100%);
}

@media screen and (max-width:768px) {
    canvas {
        width: auto!important;
        height: 100vh!important;
    }
}



.logo{
    z-index:1;
    font-family: 'Russo One', sans-serif;
    font-size:55px;
    animation: logoani 1 forwards 0.5s;
    transform: scale(0.1);
    user-select: none;
}

.info{
    z-index:1;
    font-family: 'Russo One', sans-serif;
    font-size:20px;
    
    animation: logoani 1 forwards 0.5s;
    animation-delay: 0.1s;
    transform: scale(0.1);
    user-select: none;
    text-align: center;
}

@keyframes logoani {
    0%{
        transform: scale(0.1);
    }70%{
        transform: scale(1.2);
    }85%{
        transform: scale(0.9);
    }92%{
        transform: scale(1.1);
    }96%{
        transform: scale(0.95);
    }100%{
        transform: scale(1);
    }
}

.email{
    font-family: 'arial', sans-serif;
    font-size: 18px;
    color:#789;
}

#text-container {
    font-family: 'arial', sans-serif;
    visibility: hidden;
}

  