/* Устанавливаем фон страницы с фото кота */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('photo_2024-09-17_22-11-51.jpg'); /D:\Web/
    background-size: cover;
    background-position: center;
    font-family: Arial, sans-serif;
}

/* Центрируем текст */
.content h1 {
    color: white;
    font-size: 4rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Тень для лучшей читаемости на фоне */
}
