/* Общие стили */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Контейнер */
.container {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
}

/* Шапка */
header h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333333;
    border-bottom: 3px solid #66bb6a;
    display: inline-block;
    padding-bottom: 10px;
}

/* Ссылки */
.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Кнопки */
.button {
    text-decoration: none;
    font-size: 16px;
    padding: 10px 20px;
    color: #333333;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    text-align: center;
}

.button:hover {
    background-color: #66bb6a;
    color: #ffffff;
    border-color: #66bb6a;
}
