body{width: 100%;height: 100vh; display: flex; background: #2B2B2B; justify-content: center; overflow: hidden;}
*{margin: 0; padding: 0;}

.screen{width: 100%;height: 100%;margin-top: auto;max-width: 430px; display: flex;align-items: center; justify-content: center;}
.logo{width: 50%; opacity: 0; transition: opacity 3.0s ease;}
.logo.active{opacity: 1;}

.subscribe_window{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 5.3s ease;
}

.subscribe_window.technical{
    width: 100%;
    height: 100%;
    justify-content: center;
}

.subscribe_window.active{
    opacity: 1;
    pointer-events: all;
}

.logo-small{
    width: 35%;
    margin-top: 15px;
}

.error-text{
    color: white;
    font-family: "Roboto", sans-serif;
    text-align: center;
    margin-top: 5px;
    width: 80%;
}

.error_btn{
    width: fit-content;
    height: fit-content;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid white;
    background: transparent;
    color: white;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
}

.error_btn.chanel{
    background-color: #D92570;
    border: none;
}