body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
}
.glow {
    font-size: 4rem; /* Адаптивный размер шрифта */
    color: #fff;
    text-align: center;
    animation: glow 1s ease-in-out infinite alternate;
}
@keyframes glow {
    from {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
    }
    to {
        text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
    }
}

@-webkit-keyframes glow {
    from {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
    }
    to {
        text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
    }
}
a:link { color: #dddada; }
a:visited { color: #d8d8d8; font-weight: bold; }
a:hover { color: rgb(255, 255, 255); text-decoration: underline; text-decoration-style: double; }
a:active { color: #fff; text-decoration: underline; }
a { text-decoration: none; }
header {
    background-color: red;
    padding: 20px;
    text-align: center;
}
h1, h3 {
    font-size: 3em;
    margin: 0 auto 20px;
    width: 90%;
    line-height: 1.6;
}

h2{
    margin: 0 auto 20px;
    width: 90%;
    line-height: 1.6;
}
#imgs img {
    width: 100%;
    margin: 30px 0;
    padding: 30px 0;
}
.menu-item {
    color: #fff;
}
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Адаптация для мобильных */
}
nav ul li {
    margin: 0 15px;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
}
.language-switcher {
    margin-top: 10px;
    text-align: center;
}
.language-switcher a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}
.language-switcher a.active {
    font-weight: bold;
    text-decoration: underline;
}
section {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
li {
    margin: 5%;
    padding-right: 5%;
}
.menu-item {
    background-color: #222;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
}
.menu-item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 0 0 0 5%;
     
 
}
p {
    font-family: Arial, sans-serif;
    color: #c2bfbf;
    margin: 0 auto 20px;
    width: 90%;
    line-height: 1.6;
    font-size: 1rem;
}
form label {
    display: block;
    margin-top: 10px;
}
form input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ff073a;
    background-color: #222;
    color: #fff;
}
form button {
    background-color: #ff073a;
    border: none;
    color: #fff;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
}
footer {
    background-color: red;
    text-align: center;
    padding: 10px;
    position: relative; /* Убрал fixed для лучшей адаптации */
    width: 100%;
}

/* Адаптация для планшетов */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    .glow {
        font-size: 3rem;
    }
    nav ul li {
        margin: 10px 0;
    }
    p {
        font-size: 0.9rem;
    }
}

/* Адаптация для мобильных устройств */
@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    .glow {
        font-size: 2.5rem;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    footer {
        padding: 5px;
    }
}