body{
    padding: 2rem;
    width: 100%;
    min-height: 100vh;
    display: flex;
    /* background-image: linear-gradient(to right bottom, #cffafe, #22d3ee); */
    /* background-image: linear-gradient(to right bottom, #016c8b, #003769); */
    background-image: url('Pages/Assets/bg.gif'); 
    background-size: cover;
}

body.hovered {
    /* background-image: linear-gradient(to left bottom, #fea0ff, #dac9fe); */
    background-image: url('Pages/Assets/wall6.gif');
    background-position: 0%;
    background-size: auto;
}

.container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin-inline: auto;
    filter: drop-shadow(5px 5px 20px rgba(0, 0, 0, 0.2));
}

.btn{
    position: absolute;
    top: calc(100% - 10rem);
    min-width: 120px;
    padding: 0.75rem 1rem;
    font-size: 1.25rem;
    outline: none;
    border: none;
    background-color: #455566;
    border-radius: 5px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: 0.3s;
    color: #fff;
}


.btn:hover span,
.btn:active span {
    display: none;
}

.btn:hover:before,
.btn:active:before {
    content: "Hiiiii Cutieee 💞";
}

.miss-text {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(1.2rem, 5vw, 2.5rem);
    font-family: Georgia, serif;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    letter-spacing: 0.05em;
    pointer-events: none;
    white-space: nowrap;
    text-align: center;
    width: 90%;
}

a{
    text-decoration: none;
    color: rgb(238, 203, 203);
}

@media (max-width: 600px) {
    body {
        padding: 1rem;
        justify-content: center;
        align-items: center;
    }

    .container {
        flex-direction: column;
        max-width: 100%;
    }

    .container img {
        max-width: 90%;
        max-height: 55vh;
        object-fit: contain;
    }

    .btn {
        position: fixed;
        top: auto;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
}