/* Сброс базовых отступов */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;   /* белый фон */
    color: #222;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

/* Заголовок */
header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: #111;
}

/* Блок с кнопками */
main {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Кнопки */
.btn {
    display: inline-block;
    padding: 18px 50px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    background-color: #111;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.btn:hover {
    background-color: #333;
    transform: scale(1.03);
}

/* Футер */
footer {
    margin-top: 60px;
    font-size: 0.9rem;
    color: #aaa;
}