/*
 * ВГУ Расписание | Version 2.2.1
 * Build: 26w18c2
 * Developer: @whoennrl
 * 
 * Site: https://whoennrl.ru
 */

.screen[screen-id='techUpdate'] {

    flex: 1;

    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;

    text-align: center;
    user-select: none;
    -webkit-user-select: none;
}
.screen[screen-id='techUpdate'] .iconN {
    width: 70px;
    height: 70px;
    background: var(--theme-color);
    animation: ch 2s linear infinite;
}
.screen[screen-id='techUpdate'] .title {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 20px;
}
.screen[screen-id='techUpdate'] .message {
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    font-size: 16px;
}
@keyframes ch {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}