body, html {
    font-family: 'Roboto';
    background: rgb(0, 0, 0);
    margin: 0;
    padding: 0;
    color: white;
}


.section1 {
    background-image:  url("../images/4.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
            min-height: 100vh;
                display: flex;
    justify-content: center; /* по вертикали */
    align-items: center;     /* по горизонтали */
}

 .message {
   text-align: center;
    font-size: 20px;
    line-height: 25.6px;
  
}


.section-2 {
    display: flex;
    min-height: 15vh;
    flex-direction: column;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

}

.message-2 {
    align-self: flex-start; /* влево */

}






.footer {

    color: #8cb4ff;
    /*padding: 20px 0; */
    font-size: 16px;
    font-weight: bold;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__socials {
    display: flex;
    gap: 12px;
}

.footer__socials a {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #1e293b;
    color: #e5e7eb;
    text-decoration: none;
    border-radius: 8px;

    transition: background-color 0.2s, transform 0.2s;
}

.footer__socials a:hover {
    background-color: #38bdf8;
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .footer__container {
        flex-direction: column;
        padding-top: 20px;
    }
    .message-2 {
        margin: 0 auto;
        text-align: center;

    }
}

.scroll-down {
    align-self: flex-end;
    margin-bottom: 200px;
    font-size: 25px;
    font-weight: bold;

}

.arrow {
    display: block;
    width: 18px;
    height: 18px;

    border-right: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;

    transform: rotate(45deg);
    margin: 0 auto;
}

@keyframes arrowMove {
    0%   { transform: rotate(45deg) translateY(0); }
    50%  { transform: rotate(45deg) translateY(10px); }
    100% { transform: rotate(45deg) translateY(20px); }
}