/* Remove default margins and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* Path to your image */
    background-image: url('../images/dayro.jpg'); 
    
    /* Scale image proportionally to fill the entire container */
    background-size: cover; 
    
    /* Center the image horizontally and vertically */
    background-position: center; 
    
    /* Prevent the image from repeating like a tile pattern */
    background-repeat: no-repeat; 
    
    /* Keep the background fixed in place while scrolling */
    background-attachment: fixed; 
    
    /* Ensure the body spans the full height of the device screen */
    min-height: 100vh; 
}

/* Optional styling to center text content over the background */
.content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: white;
    font-family: sans-serif;
	display:none;
}