body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Arial', sans-serif;
}

.content h1 {
    font-size: 8vw; /* Текст на всю ширину */
    color: white;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 10;
    position: relative;
    pointer-events: none;
    text-transform: uppercase;
}

/* Стили для падающих сердечек */
.hearts-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.heart {
    position: absolute;
    top: -50px;
    user-select: none;
    animation: fall linear forwards;
}

@keyframes fall {
    to {
        transform: translateY(110vh) rotate(360deg);
    }
}
