body{
background-image:url(../images/Textures/lightPaper.jpg);
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
font-size: 25px;
}


main{
margin-left: 50px;
margin-right: 50px;
}


h1{ 
    font-family:"Tagesschrift", "consolas", "sans-serif";
    color: rgb(10, 10, 10);
    background-color: burlywoodS;
    text-align: center;
    font-size: xx-large;
}

h2{
    font-size: x-large;
    text-align: center;
}

p{
    font-size: x-large;
    text-align: center;


}

#p0{
    text-align: center;
    font-size: 28px;
    font-weight: bold;
}

#p1{
    text-align:left;
    font-size: 35px;
    font-weight: bolder;
    text-decoration-line:underline;
    margin-bottom: 20px;
}

#p2{
    text-align: left;
    font-size: 25px;
    
}

div{
    font-size: x-large;
    align-items: center;

}
 /* from is the buttons on the main pages */ 

button{
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
}
    /* from here is the stuff used to align the main portrait and the decorations */
  .responsive {
    padding: 0 6px;
    float: left;
    width: 24.99999%;
  }
  
  /* Three image containers (use 25% for four, and 50% for two, etc) */
.column {
  float: left;
  width: 33.33%;
  padding: 5px;
}

/* Clear floats after image containers */
.row::after {
  content: "";
  clear: both;
  display: table;
} 


 /* from here is the stuff used in the navigation bar */
*{
  padding: 0px;
  margin: 0px;
  font-family: "Tagesschrift";
  box-sizing: border-box;
}

  ul{
    list-style: none;
    background-image:url(../images/Textures/dark\ woodgrain.jpg);
    background:rgb(54, 34, 8);
    margin-left: 0px;
    
  }

  ul li{
    display: inline-block;
    position: relative
  }

  ul li a{
    display: block;
    padding: 20px 25px;
    color: rgb(224, 217, 204);
    text-decoration: none;
    text-align: center;
    font-size: 30px;
    
  }

  ul li ul.dropdown li{
    display: block;
    

  }

  ul li ul.dropdown{
    width: 100%;
    background: rgb(54, 34, 8);
    position: absolute;
    z-index: 999;
    display: none;
    
  }

  ul li a:hover{
    background:rgb(83, 53, 13);
    
  }

  ul li:hover ul.dropdown {
    display: block;
    
  }

.table, th, td{
  border: 3px solid black; 
  padding: 5px;
}
th{
  font-size: 30px;
}
th, td{
  text-align: left;
}





      .container {
        position: relative;
        min-height: 100vh;
        background: none;
      }

      .container h1{
        font-size: 80px;
        color: rgb(54, 34, 8);
      }


      .container .image-container {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        padding: 10px;
      }



      .container .image-container .image {
        height: 250px;
        width: 350px;
        border: 5px solid rgb(255, 255, 255);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
        overflow: hidden;
        cursor: pointer;
      }



      .container .image-container .image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        transition: 0.2s linear;
      }

      .container .image-container .image:hover img {
        transform: scale(1.1);
      }



      .container .popup-image {
        position: fixed;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, .9);
        height: 100%;
        width: 100%;
        z-index: 100;
        display: none;
      }

      .container .popup-image span {
        position: absolute;
        top: 0;
        right: 10px;
        font-size: 40px;
        font-weight: bolder;
        color: white;
        cursor: pointer;
        z-index: 100;
      }



      .container .popup-image img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border: 5px solid white;
        border-radius: 5px;
        height: 900px;
        object-fit: cover;
        
      }

      @media (max-width: 768px) {

        .container .popup-image img {
          width: 95%;
        }
      }
