body {
    font-family: Arial, serif;
    /* Changed from background-color to background */
     background: linear-gradient(to bottom, #ff93bb, #f5c1d8); 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden; /* Prevents scrollbars from appearing */
}

.container {
    position: relative; /* Crucial: This anchors the image to the card */
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 400px;
    max-width: 90%;
    right: 20px;
    
}

h1 {
    font-family: "Permanent Marker", normal, serif;
    color: #000000;
    margin-bottom: 20px;
    margin-top: -10px;
}
p {
    font-family: "Permanent Marker", normal, serif;
    font-size: 18px;
    color: #333333;
    margin-bottom: 30px;
}
.btn {
    background: #ff69b4;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: none;
}
.btn:hover {
    background: #f84ba7;
}

.char1 {
    position: absolute;
    top: -95px;       
    left: -20px;       
    width: 120px;     
    z-index: -1;       
    
    object-fit: contain; 

}

.char2 {
    position: absolute;
    top: -139px;       
    right: -68px;      
    width: 150px;     
    z-index: -1;       
    
    object-fit: contain; 
}
