.main-header, .download-header, .error-header, .info-header {
    display: flex;
    width: 100%;
    text-align: left;
    align-items: center;
    margin-bottom: 8%;
}
.main-header {
    min-height: 85vh;
    background: linear-gradient(to bottom, #87CEFA, #ffffff);
}

.download-header, .info-header {
    min-height: 50vh;
    background: linear-gradient(to bottom, #87CEFA, #ffffff);
}

.error-header {
    min-height: 50vh;
    background: linear-gradient(to bottom, #fa8787, #ffffff);
}

.title {
    font-family: "Arial";
    font-size: 6vw;
    margin-left: 5%;
}

.word {
    font-family: "Arial";
    color: #000000;
    display: inline-block;
    opacity: 0;
    transform: translateY(-50px);
    animation: wordDown 1.5s forwards;
}

.special {
    color: rgb(0, 113, 187);
}

.word:nth-child(1) {
    animation-delay: 0.5s; /* Первое слово */
}

.word:nth-child(3) {
    animation-delay: 1s; /* Второе слово*/
}

.word:nth-child(5) {
    animation-delay: 1.5s; /* Третье слово*/
}

@keyframes wordDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 768px) {
    .title {
        font-size: 50px;
    }
    .main-header {
        min-height: 60vh;
    }
    .download-header, .info-header {
        min-height: 30vh;
    }
}

@media screen and (max-width: 480px) {
    .title {
        font-size: 33px;
        margin: 0 auto;
    }
    .main-header {
        min-height: 35vh;
        text-align: center;
    }
    .download-header, .info-header {
        min-height: 18vh;
        text-align: center;
    }
    
}