@font-face {
    font-family: Luving;
    src: url("GoldenAvocado-8OOlM.woff");
}
body {
    background-color: rgb(58, 58, 58);
    color: white;
    font-family: Luving, serif;
}
#daydiff {
    color: pink;
}
#bg {
    display: none;
}
#custom-file-upload {
    border: 1px solid #ccc;
    display: inline-block;
    margin-top: 40px;
    padding: 6px 12px;
    cursor: pointer;
    background-color: pink;
    border-radius: 100px;
}

#reset-bg-btn {
    border: 1px solid #ccc;
    display: inline-block;
    cursor: pointer;
    padding: 6px 12px;
    margin-top: 10px;
    background-color: pink;
    color: white;
    font-family: Luving, serif;
    border-radius: 100px;
}
#main {
    display:flex;
    flex-direction: column;
    align-items: center;
    align-content: space-around;
    width: 100%;
    min-height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#top {
    background-color: black;
    min-height: 10vh;
    width: 95vw;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 100px;
}
#bottom {
    display:flex;
    flex-direction: column;
    align-items: center;
    align-content: space-around;
    width: 90vw;
}
.redbtn {
    background-color: pink;
    color: white;
    font-family: Luving, serif;
    border-radius: 100px;
    height: 5vh;
    width: 30vw;
}
#heart {
    height: 100px;
    width: 100px;
    background-color: red;
    transform: rotate(-45deg);
    position: relative;
}
.heart {
    height: 100px;
    width: 100px;
    background-color: red;
    transform: rotate(-45deg);
    position: relative;
}

.heart::before,
.heart::after {
    content: "";
    height: 50px;
    width: 50px;
    background-color: red;
    border-radius: 50%;
    position: absolute;
}

.heart::before {
    top: -25px;
    left: 0;
}

.heart::after {
    left: 25px;
    top: 0;
}

@keyframes heartbeat {
    0% {
        transform: scale(1)
        rotate(-45deg);
    }

    25% {
        transform: scale(1.25)
        rotate(-45deg);
    }

    45% {
        transform: scale(1.5)
        rotate(-45deg);
    }
}

.heart {
    height: 50px;
    width: 50px;
    background-color: red;
    transform: rotate(-45deg);
    position: relative;
    animation: heartbeat 1s infinite;
}
#catfact {
    display: inline-block;
    color: pink;
}