/* Обнуляем отступы и поля для всех элементов */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Устанавливаем фон и стили текста для body */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

/* Оформление заголовка */
h1 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    animation: fadeIn 1s ease-in-out;
}

/* Стиль для ссылок */
a {
    text-decoration: none;
    color: #000000;
    transition: color 0.3s ease-in-out;
}



a:hover {
    color: #888888;
}

/* Оформление заголовка в хедере */
.header {
    background-color: #000000;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    animation: slideInDown 1s ease-in-out;
}

/* Стиль для навбара (меню) */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.nav-links ul {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-right: 20px;
}

/* Оформление херо-секции */
.hero {
    text-align: center;
    padding: 50px 0;
    animation: fadeInUp 1s ease-in-out;
}

/* Стиль для секции с фишкой */
.feature {
    padding: 50px 0;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
    margin-bottom: 0; /* Убираем нижний отступ */
    
}

/* Оформление подвала */
.footer {
    background-color: #000000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    
}

.footer img{
    max-width: 80%;
    max-height: 80%;
    
}

/* Медиа-запрос для мобильных устройств z
@media screen and (max-width: 1100px) {
    .footer {
        display: flex;
        position: relative;
    flex-direction: column-reverse;
    align-items: center;
    }
  }

  @media screen and (max-width: 1px) {
    .footer {
        display: flex;
        position: relative;
    flex-direction: column-reverse;
    align-items: center;
    }
  }


/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-50px);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
