
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.041);
}

header {
    text-align: center;
    margin-bottom: 20px;
}

.love {
    margin-bottom: 10px;
    position: absolute;
    bottom: 0;
    font-family: 'La Belle Aurore', cursive;
    z-index: 12000;
}

.hero-text {
    font-size: 4rem;
    font-family: 'Dancing Script', cursive;
    position: relative;
    z-index: 2;
    color: black;
}

.timetime {
    font-size: 2rem;
    font-family: 'La Belle Aurore', cursive;
    position: relative;
    z-index: 2;
    color: black;
    
}


.heart {
    position: fixed;
    top: -1vh;
    font-size: 3rem;
    transform: translateY(0);
    animation: fall 3s linear forwards;
    z-index: 1;
    color: rgba(0, 0, 0, 0.363);
}

.click-catcher {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
}

@keyframes fall {
    to {
        transform: translateY(105vh);
    }
}

#musicButton {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 11;
    font-size: 30px;
    border-style: none;
    background: transparent;
    }

:root {
    --main-color: #ecf0f1;
    --point-color: #555;
    --size: 5px;
}

.loader {
    background-color: var(--main-color);
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    z-index: 9999;
}

.loader__element {
    border-radius: 100%;
    border: var(--size) solid var(--point-color);
    margin: calc(var(--size) * 2);
}

.loader__element:nth-child(1) {
    animation: preloader 0.6s ease-in-out alternate infinite;
}

.loader__element:nth-child(2) {
    animation: preloader 0.6s ease-in-out alternate 0.2s infinite;
}

.loader__element:nth-child(3) {
    animation: preloader 0.6s ease-in-out alternate 0.4s infinite;
}

@keyframes preloader {
    100% {
        transform: scale(2);
    }
}








