body{
    padding: 2rem;
    width: 100%;
    min-height: 100vh;
    display: flex;
    background-image: url('Pages/Assets/bg.gif'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

body.hovered {
    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));
    animation: fadeIn 1s ease;
}

#image {
    max-width: 90vw;
    max-height: 50vh;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
}

.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: all 0.3s ease;
    color: #fff;
    animation: pulse 2s ease-in-out infinite;
}

.btn:hover {
    transform: scale(1.1);
    animation: none;
}

.btn:hover span {
    display:none
}
  
.btn:hover:before {
    content:"Hiiiii Cutieee \1F49E ";
}

@media (max-width: 768px) {
    body {
        padding: 1rem;
    }
    .btn {
        top: calc(100% - 8rem);
        min-width: 100px;
        padding: 0.6rem 0.8rem;
        font-size: 1rem;
    }
    #image {
        max-height: 40vh;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0.5rem;
    }
    .btn {
        top: calc(100% - 7rem);
        min-width: 90px;
        padding: 0.5rem 0.7rem;
        font-size: 0.9rem;
    }
    #image {
        max-height: 35vh;
    }
}
