* {
    user-select: none;
}

html, body {
    overflow: hidden;
    background-color: #000;
}

body {
    margin: 0;
    position: fixed;
    width: 100%;
    height: 100%;
}

canvas {
    width: 100%;
    height: 100%;
}
.logo{
    position: absolute;
    top: 65px;
    left: 65px;
    display: block;
    z-index: 100;

}
.button-back{
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-bottom: 0;
    backdrop-filter: blur(50px);
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    font-family: 'formular';
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    width: 183px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: absolute;
    bottom: 0;
    left: 65px;
    z-index: 100;
    transition: all .3s ease
}
.button-back:hover{
    background-color: rgba(0,112,201,0.6);
}
@media (max-width:992px){
    .logo{
        top: 20px;
        left: 0;
        right: 0;
        text-align: center;
    }
    .logo__img{
        max-width: 105px;
    }
    .button-back{
        left: 0;
        right: 0;
        margin: auto;
    }
}