body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    background-color: black;
    transition: background-color 0.5s ease;
}



.heart::after {
    background: inherit;
    border-radius: 50%;
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    height: 100px;
    width: 100px;
}

.heart::before {
    background: inherit;
    border-radius: 50%;
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    height: 100px;
    width: 100px;
}

@keyframes pulse {
    0% {
        transform: rotate(-45deg) scale(1);
        opacity: 0;
    }
    50% {
        transform: rotate(-45deg) scale(1.3);
        opacity: 1;
    }
    100% {
        transform: rotate(-45deg) scale(1);
        opacity: 1;
    }
}

.text-container {
    margin-top: 100px;
}

.text {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 0 10px;
}
