body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Убираем полосы прокрутки */
}

/* Размытый фон */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./bg2.jpg') no-repeat center center fixed;
    background-size: cover;
   /*  filter: blur(10px); */ /* Эффект размытия */
    z-index: -1; /* Помещаем фон за контент */
}

header {
    text-align: center;
    padding: 20px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
header h1 {
    font-size: 36px;
    margin: 0;
    font-weight: bold;
}
header p {
    font-size: 18px;
    margin-top: 10px;
}

.container {
    max-width: 600px;
    margin: 20px auto;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.9); /* Полупрозрачный фон */
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px); /* Дополнительное размытие для контейнера */
}
.container h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #0073e6;
}
.container p {
    font-size: 18px;
    line-height: 1.8;
    margin: 10px 0;
}
.container a {
    color: #0073e6;
    text-decoration: none;
    font-weight: bold;
}
.container a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
footer a {
    color: #0073e6;
}
footer a:hover {
    text-decoration: underline;
}