body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    
    /* Set the SVG as the background */
    background-image: url('ClouDorn.svg');
    
    /* Ensure it covers the whole screen */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    
    /* Keep the background fixed during scroll */
    background-attachment: fixed;

    /* Center content on top of the background */
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: sans-serif;
}