* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #e7a3c1;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    font-size:16px;
}

.title {
    font-size: 1.5rem;
    font-family: 'Regular', cursive;
    text-align: center;
}

.days {
    margin-top: 22px;
    font-size: 1.8rem;
    font-family: 'Rye', cursive;
    text-align: center;
}
.daysLabel {
    font-size: 1.5rem;
}
.seconds {
    margin-top: 32px;
    font-size: 1.5rem;
    font-family: "Monda_bo", Georgia, sans-serif;
    text-align: center;
}
#loveHeart{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
}
#garden {
    width: 100%;
    height: 100%;
    z-index: -1;
}
.we{
    width: 100%;
    max-width: 500px;
}
@media (min-width: 992px) {
    .title {
        font-size: 1rem;
        margin-top: 30px;
    }
    .daysLabel {
        font-size: 0.5rem;
    }
    .days {
        margin-top: 22px;
        font-size: 1rem;
    }
    .seconds {
        margin-top: 32px;
        font-size: 0.5rem;
    }
}