.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
}

.content {
    color: white;
    font-family: sans-serif;
    font-size: 8vw;
    width: fit-content;
}

.overlay {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 10;
    background-color: transparent;
}

#heart {
    position: relative;
    width: 100px;
    height: 90px;
    margin-top: 10px;
}

#heart::before,
#heart::after {
    content: "";
    position: absolute;
    top: 0;
    width: 52px;
    height: 80px;
    border-radius: 50px 50px 0 0;
    background: red;
}

#heart::before {
    left: 50px;
    transform: rotate(-45deg);
    transform-origin: 0 100%;
}

#heart::after {
    left: 0;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}

#follow {
    position: absolute;
    top: -1000px
}

body {
    overflow: hidden;
    cursor: none;
    height: 100%;
    width: 100%;
}