/* Общие настройки */
body, html {
    margin: 0;
    padding: 0;
    font-family: "Trebuchet MS", monospace;
    background-color: #f9f7eb;
    height: 100%; /* чтобы можно было центрировать по высоте */
    display: flex;
    flex-direction: column;
    align-items: center; /* центрирование по горизонтали */
    justify-content: center; /* центрирование по вертикали */
    text-align: center;
}

/* Логотип */
#logo {
    width: 200px;
    height: auto;
    cursor: pointer;
    margin-bottom: 50px; /* расстояние между логотипом и кнопками */
    margin-right: 20px;
    position: static;
    transition: transform 0.8s ease-in-out; /* Добавляем плавную анимацию */

}

#logo:hover {
    transform: rotate(360deg); /* Поворот на 360 градусов при наведении */
}

/* Заголовки */
h1 {
    color: #2f3645;
    font-size: 40px; 
    letter-spacing: 3px;
    margin: 30px 0;
}

h2 {
    color: #2f3645;
    font-size: 30px; 
    letter-spacing: 3px;
    margin: 30px 0;
}

/* Контейнер кнопок */
#container {
    display: flex;
    gap: 30px; /* расстояние между кнопками */
}

/* Кнопки */
#container .nav-link {
    display: block;
    background-color: #97a9b2;
    font-size: 20px;
    padding: 15px 25px;
    width: 200px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    color: #2f3645;
    text-decoration: none;
    text-align: center;
}

/* Новый эффект при наведении */
#container .nav-link:hover {
    background-color: #e1e1e1;
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0,0,0,0.5);
}

