@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    list-style: none;
    user-select: none;
}

body {
    min-height: 100vh;
    background: #353b48;
}

.heart {
    color: #a55eea;
    font-size: 2rem;
    position: fixed;
    top: -1vh;
    transform: translateY(0);
    animation: fallingHeart 3s linear forwards;
    text-shadow: 0 0 6px rgba(255,255,255, 1);
    cursor: pointer;
}

.heart:hover {
    transform: scale(3);
}

@keyframes fallingHeart {
    to {
        transform: translateY(105vh) scale(3);
    }
}