/* Сброс отступов и настройка шрифтов */
body, h1, p {
    margin: 0;
    padding: 0;
    text-align: center;
    color: white;
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: black;
}

/* Видео как фон */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo img {
    max-width: 200px;
}

/* Текст и соцсети внизу */
.footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.footer h1 {
    font-size: 48px;
    font-weight: bold;
}

.footer p {
    font-family: "Lora", serif;
    font-style: italic;
    font-weight: 100;
    font-size: 18px;
    margin-bottom: 15px;
}

/* Социальные ссылки */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    display: inline-block;
}

.social-links img {
    width: 40px;
    height: auto;
    transition: opacity 0.3s;
}


.social-links img:hover {
    opacity: 0.7;
}

/* Адаптивность */
@media (max-width: 768px) {
    .footer h1 {
        font-size: 32px;
    }

    .footer p {
        font-size: 16px;
    }

    .social-links img {
        width: 30px;
    }
}
