/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;


     /* use fabrion-mesh as backgroud in repeat */
    margin: 0;
    padding: 0;
    background-color: #000000; /* black background */
    /*background-color: #DC1219; /* red background */
    background-image: url('../images/fabrion-mesh.png');
    background-repeat: repeat; /* this makes it tile */
    background-position: top left;
    background-size: 550px;/* use original image size, repeated */
    background-position: 0px 0px;
    display: flex;
    justify-content: center; /* centers horizontally */
    align-items: center;     /* centers vertically */
    
    position: relative; /* needed for top-right positioning */
}

/* Centered image styles */
.image-container img {
    max-width: 100%;    /* responsive - scales for smaller screens */
    height: auto;      /* maintain aspect ratio */
    border-radius: 8px; /* optional: rounded corners */
    /*box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15); /* optional: white shadow for contrast */
    position: relative;
    z-index: 20;
}