body{width: 100%;height: 100vh; display: flex; background: linear-gradient(-45deg, #73143B, #1B1B1B); 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: 250px;
    border-radius: 10px;
    transform: translateY(-50%);
    top: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 5.3s ease;
}

.subscribe_window.technical{
    width: 100%;
    height: 100%;
    justify-content: center;
    transform: translateY(-50%);
}

.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: 5px 10px;
    border-radius: 15px;
    border: 1px solid #D6D278;
    background: transparent;
    color: white;
    font-family: "Roboto", sans-serif;
}

