body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-image: url("pink_bg.jpeg");
    background-size: cover;
    background-position: center;

    background-image: url("pink_bg.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: repeat;
}


.header {
    display: flex;
    justify-content: center;
    align-items: flex-start;

    height: 13vh;
    width: 30vw;
    padding: 25px;
    margin: 40px auto 0 auto;
    border-radius: 15px;
    box-sizing: border-box;

    background-color: #fef3f1;
    border: 2.3px solid #ba8f90;

    text-align: center;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.text-color {
    color: #ba8f90;
}

.background {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 10px 0;
    display: block;

    background-image: url("pink_bg.jpeg");
    background-repeat: repeat-x;
    background-size: contain;
}

.profile {
    width: auto;
    height: auto;
    object-fit: cover;
    block-size: 50%;

    position: absolute;
    top: 150px;
    right: right;

}

.profile-2 {
    width: auto;
    height: auto;
    object-fit: cover;
    block-size: 56%;

    position: absolute;
    bottom: -600px;
    right: -10px;
}

.lace {
    width: 3500px;
    height: 500px;
    object-fit: cover;
    
    position: absolute;
    top: -215px;
    right: -5px;

    background-image: url("spacer-removebg-preview.png");
    background-repeat: repeat-x;
    background-size: contain;
}

@media (max-width: 500px) {
    .background {
        display: none !important;
    }

    /* 1. RESET SCREEN CLIPPING */
    body {
        background-image: url("pink_bg.jpeg"); /* Keeps your main site background */
        background-size: cover;
        background-position: center;
        background-attachment: absolute;
        padding: 10px;
    }
    .header {
        width: 100%;
        max-width: 90%;
        height: auto;
        margin: 20px auto; 
        font-size: 1.3rem; 
    }

    /* 3. STACK GRAPHICS SAFELY WITHOUT FIXED COORDINATES */
    .profile {
        position: static !important; 
        display: block !important;    
        margin: 20px auto !important; 
        width: 80% !important;        
        max-width: 200px !important;  
        height: auto !important;

        top: 150px;
        right: right;
    }

    .profile-2 {
        position: static !important; 
        display: block !important;    
        margin: 20px auto !important; 
        width: 80% !important;        
        max-width: 200px !important;  
        height: auto !important;
    }

    .lace {
        position: static !important; 
        display: block !important;    
        margin: 20px auto !important; 
        width: 80% !important;        
        max-width: 200px !important;  
        height: auto !important;
    }
    /*.profile {
        max-width: 220px;
        max-height: 140px;
    }
    .profile-2 {
        max-width: 240px;
        max-height: 200px;
    }*/
    
}