@import url('https://fonts.googleapis.com/css2?family=Original+Surfer&display=swap');

* {
    box-sizing: border-box;
}

body {
    font-family: 'Original Surfer', cursive;
    background-color: #ffd1dc;
    text-align: center;
    overflow: hidden;
    margin: 0;
}

h2 {
    margin: 50px 0 20px 0;
    text-align: center;
}

small {
    display: block;
    margin-bottom: 25px;
    text-align: center;
}

.fa-heart {
    color: #ff007f;
}

.loveMe {
    height: 550px;
    width:100%;
    max-width: 540px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 9999;
    margin:auto;
}

.fa-heart {
    position: absolute;
    animation: grow 0.6s linear;
    transform: translate(-50%, -50%) scale(0);
}
.love-image {
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    max-height: 100dvh;
    object-fit: contain;
}
.love-video {
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    max-height: 100dvh;
    object-fit: contain;
}
@keyframes grow {
    to {
        transform: translate(-50%, -50%) scale(13);
        opacity: 0;
    }
}
 .love-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #ffd1dc;
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        z-index: 9999;
        font-size: 1.5rem;
        padding: 20px;
    }

    .hidden {
        display: none;
    }

    .love-message {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .tap-text {
        font-size: 1.2rem;
        opacity: 0.7;
    }