body, html {
    background: rgb(108, 105, 168);
    background: radial-gradient(circle, rgba(108, 105, 168, 1) 1%, rgba(0, 27, 68, 1) 100%);
}

.loader_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.word {
    color: #fff;
    height: 2.5em;
    line-height: 2.5em;
    margin: auto;
    right: 0;
    position: absolute;
    text-shadow: 0 0 10px rgba(214, 252, 255, 0.5), 0 0 5px rgba(255, 253, 251, 0.5);
    font-size: 20px;
    bottom: 20px;
    left: 20px;
    display: none;
}

.word span {
    display: inline-block;
    transform: translateX(100%) scale(0.9);
    transition: transform 500ms;
}

.word .done {
    color: #43b7ff;
    transform: translateX(0) scale(1);
}

.overlay {
    background-image: linear-gradient(transparent 0%, rgba(10, 16, 10, 0.28) 50%);
    background-size: 1000px 2px;
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    opacity: .5;
}

#status {
    color: red;
    display: flex !important;
    justify-content: center;
    align-items: center;
    font-size: 19px;
    font-weight: bold;
    width: 60%;
    height: 100px;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    margin: auto;
    background-image: url("../img/message_field.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0;
    transition: all .5s ease-in-out
}

@media (max-height: 1200px) {
    .loader_logo {
        width: 30%;
        height: auto;
    }
}




