body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f2f5; /* Светло-серый фон */
    color: #333;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Занимает всю высоту экрана */
    text-align: center;
}

.container {
    background-color: #ffffff;
    padding: 40px 60px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 90%;
}

h1 {
    color: #4a90e2; /* Синий заголовок */
    font-size: 2.8em;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.site-name {
    color: #e94e77; /* Розовый цвет для имени сайта */
    font-weight: bold;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555;
}

.button {
    display: inline-block;
    background-color: #5cb85c; /* Зеленая кнопка */
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.button:hover {
    background-color: #4cae4c;
    transform: translateY(-2px);
}
