/* Основной контент */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.section-title {
    font-size: 32px;
    margin-bottom: 30px;
}

.main-sections {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 100%;
}

/* Кнопки в основном контенте */
.main-button {
    flex: 1 1 50%; /* Каждая кнопка займет 1/2 ширины контейнера */
    max-width: 600px; /* Максимальная ширина кнопки */
    min-width: 300px; /* Минимальная ширина кнопки */
    aspect-ratio: 3 / 2; /* Пропорции 3:2 */
    background-size: cover;
    background-position: center;
    font-size: 26px;
    font-weight: bold;
    border: 3px solid white;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s, text-decoration 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    text-decoration: none; /* Убирает подчеркивание */
}

.main-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    text-decoration: underline; /* Подчеркивает текст */
}
