* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    font-family: Arial, sans-serif;

    background:
        linear-gradient(
            135deg,
            #180018,
            #4b003f,
            #21002b
        );

    color: white;

    text-align: center;

    min-height: 100vh;

    overflow-x: hidden;
}


/* PASSWORD SCREEN */

#lockScreen {

    min-height: 100vh;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 20px;

    background:
        linear-gradient(
            135deg,
            #180018,
            #650052,
            #21002b
        );
}


.lockBox {

    width: 90%;

    max-width: 420px;

    padding: 45px 25px;

    border-radius: 30px;

    background:
        rgba(255,255,255,0.09);

    backdrop-filter: blur(15px);

    box-shadow:
        0 0 40px rgba(255,60,160,0.35);
}


.lockEmoji {

    font-size: 70px;

    margin-bottom: 15px;
}


.lockBox h1 {

    color: #ff8ac8;

    font-size: 32px;

    margin-bottom: 15px;

}


.lockBox p {

    color: #ffe4f2;

    margin-bottom: 20px;

}


.lockBox input {

    width: 90%;

    padding: 15px;

    border: none;

    outline: none;

    border-radius: 30px;

    text-align: center;

    font-size: 16px;

    margin-bottom: 20px;
}


/* BUTTON */

button {

    border: none;

    padding: 15px 28px;

    border-radius: 30px;

    background:
        linear-gradient(
            45deg,
            #ff3f91,
            #ff76bd
        );

    color: white;

    font-size: 16px;

    font-weight: bold;

    cursor: pointer;

    box-shadow:
        0 0 20px rgba(255,70,160,0.5);

    transition: 0.3s;
}


button:hover {

    transform: scale(1.08);

}


#error {

    color: #ff8fbd;

    margin-top: 15px;

}


/* MAIN WEBSITE */

#mainContent {

    display: none;

}


.hero {

    min-height: 100vh;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    padding: 30px;
}


.smallText {

    color: #ffb6dc;

    font-size: 18px;

    margin-bottom: 20px;

}


.hero h1 {

    font-size: 55px;

    color: #ff70b7;

    text-shadow:
        0 0 10px #ff4fa3,
        0 0 25px #ff4fa3;

    margin-bottom: 20px;

}


.intro {

    font-size: 20px;

    margin-bottom: 35px;

    max-width: 600px;

}


/* SECTIONS */

#surprise {

    padding: 60px 20px;

}


h2 {

    color: #ff9dcc;

    font-size: 30px;

    margin: 50px 0 25px;

}


/* LETTER */

.letter {

    max-width: 650px;

    margin: auto;

    padding: 35px;

    border-radius: 25px;

    background:
        rgba(255,255,255,0.08);

    backdrop-filter: blur(10px);

    box-shadow:
        0 0 30px rgba(255,50,150,0.25);

    font-size: 18px;

    line-height: 1.8;

}


.letter h3 {

    color: #ff75b8;

    margin-top: 25px;

}


/* PHOTO */

.photoBox {

    max-width: 400px;

    margin: auto;

    padding: 10px;

    border-radius: 25px;

    background:
        rgba(255,255,255,0.1);

}


.photoBox img {

    width: 100%;

    display: block;

    border-radius: 20px;

}


/* REASONS */

.reasons {

    max-width: 500px;

    margin: auto;

    display: flex;

    flex-direction: column;

    gap: 15px;

}


.reasons div {

    padding: 18px;

    border-radius: 20px;

    background:
        rgba(255,255,255,0.08);

    font-size: 18px;

    transition: 0.3s;

}


.reasons div:hover {

    transform: scale(1.04);

}


/* FINAL */

.final {

    padding: 60px 20px;

}


.bigHeart {

    font-size: 100px;

    animation:
        heartbeat 1s infinite;

}


@keyframes heartbeat {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }

}


.final h1 {

    font-size: 50px;

    color: #ff70b7;

}


.signature {

    margin-top: 20px;

    color: #ffacd4;

    font-style: italic;

}


/* FLOATING HEARTS */

.floatingHearts {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    font-size: 25px;

    word-spacing: 30px;

    opacity: 0.5;

    animation: floating 8s linear infinite;

    pointer-events: none;

}


@keyframes floating {

    0% {
        transform: translateY(100vh);
    }

    100% {
        transform: translateY(-20vh);
    }

}


/* MOBILE */

@media(max-width:600px) {

    .hero h1 {

        font-size: 40px;

    }

    .final h1 {

        font-size: 38px;

    }

    h2 {

        font-size: 25px;

    }

    .letter {

        padding: 25px;

        font-size: 16px;

    }

}