body {
 
background-image: url('/images/background1.jpg'); /* Replace 'your-image.jpg' with your image path */
            background-repeat: no-repeat; /* Prevents image repetition */
            background-size: cover; /* Scales the image to cover the entire background */
            background-attachment: fixed; /* Fixes the background image during scrolling */
            color: white;
  
display: flex;
       flex-direction: row;
 //background-image: url(/images/background6.png);
 
}

 multiple-images {
            background-image: 
                                 url('https://my.miradior.net/images/background2.jpg'),
                                  url('https://my.miradior.net/images/background3.jfif');
            background-repeat: no-repeat;
            width: 800x;
            height: 600px;
            //background-size: cover;
            background-position: top;
            position: relative;
            //border: 5px solid black;
            font-family: Arial, Helvetica, sans-serif;
            color: white;
            background-color: #cccccc;
        }
  

/* Style the header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99; /* Ensures the header appears above other content */

  //background-image: url("/images/miradior_banner_cut.jpg" );
  //background-repeat: repeat-y;
  background-size: cover;
  //background-color: #666;
  padding: 10px;
  text-align: center;
  font-size: 35px;
  color: white;
}

/* Create two columns/boxes that floats next to each other */
nav {
  float: left;
  width: 20%;
  //height: 300px; /* only for demonstration, should be removed */
  background: none;
  background-color: none;
  padding: 1px;
  color: none;
  
}




article {
  //background-image: url("https://miradior.net/images/miradior_banner.jpg" );
  //background-repeat: repeat-y;
  //background-size: cover;
   //background-image: url("my.miradior.net/images/background2.jpg");
  float: left;
  padding: 1px;
  width: 80%;
  background-color: none;
  color: none;
  //height: 300px; /* only for demonstration, should be removed */
}



/* Style the footer */
footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: none;
   color: white;
   text-align: center;
}

/* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other, on small screens */
@media (max-width: 600px) {
  nav, article {
    width: auto;
    height: auto;
  }
}
img {
  width: 70%;
}
.navbar {
  overflow: hidden;
  background-color: #333;
  position: fixed;
  top: 0;
  width: 100%;
}

.navbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.navbar a:hover {
  background: #ddd;
  color: black;
}

.main {
  padding: 1px;
  margin-top: 10px;
  height: 1000px; /* Used in this example to enable scrolling */
}

table, th, td {
  
  border: 1px solid black;
  border-radius: 10px;
}
th, td {
  background-color: none;
  color: none;
}
.grid-container {
  display: grid;
  grid-template-columns: 700px 200px;
  grid-template-rows: auto auto auto;
  grid-gap: 10px;
  background-color: #2196F3;
  padding: 10px;
}

.grid-container > div {
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 20px 0;
  font-size: 30px;
}
.item1 {
  grid-column-end: span 2;
  
}
.item4 {
  grid-column-end: span 2;
  
}

a:link {
  color: yellow;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: pink;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: green;
  background-color: transparent;
  text-decoration: underline;
}
</style>




