body {
    background-color: #eadebb;
font-family: 'Goudy Bookletter 1911', serif; /* A font with an old-style feel */
    font-size: 18px;
    text-align: center;
    background-image: url('background.png');
    background-repeat: repeat;
  }

  h1 {
    color: #a4583f;
    
    text-align: left;
    font-size:40px
  }
    h2 {
    color: #a4583f;
    text-align: center;
    font-size:40px
  }
      h3 {
    color: #98281a;
    text-align: center;
    font-size:20px
  }
  p {
  color: rgba(22, 12, 2, 0.669);
  }
  a {
  color: #d73f0c;
  }

  footer {    
      p{color: #d73f0c; }
  }

  
  .container {  display: grid;
    grid-template-columns: 300px 1fr 1fr;
    grid-template-rows: 175px 1fr 5px 10px;
    gap: 0px 0px;
    grid-auto-flow: row;
  }
  
  .logo { grid-area: 1 / 1 / 3 / 2; 
    justify-self: center;
    padding-top:0px;
    align-self: start;
  padding-bottom:10px;}
  .name { grid-area: 1 / 3 / 2 / 4; 
    justify-self: end;
    align-self: end;
    padding-right:15px;
  }
  
  
  .navigation { grid-area: 2 / 1 / 3 / 2; 
    align-self: top;
    padding-top:75px;
  }
  


  .content { grid-area: 2 / 2 / 4 / 4;
    border: 10px solid;
    border-image-source: url("borderimage.png");
    padding:30px 100px 50px 100px;
    border-image-slice:70 70 70 70;
    border-image-width:
    30px 30px 30px 30px;
    border-image-outset: 
    0px 0px 0px 0px;
    border-image-repeat:
    repeat repeat;}


    #main, #thumbnails img {
      box-shadow: 2px 2px #774f4f;
      
    }
     
    * {
      transition: all 0.5s ease;
    }
     
    #thumbnails {
      text-align: center;
    }
    #thumbnails img {
      max-width: 100px;
      max-height: 100px;
      margin: 10px;
      cursor: pointer;
    }
    @media only screen and (max-width: 480px) {
      #thumbnails img {
        width: 50px;
        height: 50px;
      }
    }
    #thumbnails img:hover {
      transform: scale(1.05);
    }
     
    #main {
      max-height:600px;
      max-width:600px;
      object-fit: cover;
      display: block;
      margin: 20px auto;
    }
    @media only screen and (max-width: 480px) {
      #main {
        width: 100%;
      }
    }

 .hidden {
      opacity: 0;
    }

.row {
  align-self: center;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  padding: 0 8px;
}

/* Create two equal columns that sits next to each other */
.column {
  padding: 0 8px;
}

.column img{
  max-height: 200px;
}
/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Modal Content */
.modal-content {
  position: relative;
justify-content: center;
  background-color: #fefefe transparent;
  margin: auto;
  padding: 0;
}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 80px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

/* Hide the slides by default */
.mySlides {
  display: none;
}
.mySlides img {
  max-height:100vh;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50vh;
  max-width: 100vh;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 50px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Caption text */
.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

img.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
    cursor: pointer;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.medieval-button {
    padding: 10px 20px;
    background-color: #795649; /* A dark wood-like brown */
    color: #f4e5c3; /* A parchment-like off-white */
    border: 2px solid #c0a080; /* A lighter brown border */
    font-family: 'Goudy Bookletter 1911', serif; /* A font with an old-style feel */
    font-size: 18px;
    text-shadow: 1px 1px 0px #a67c52; /* Gives a bit of depth to the text */
    box-shadow: 2px 2px 0px #a67c52; /* Simulates an inset look */
    border-radius: 4px; /* Slightly rounded corners */
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .medieval-button:hover {
    background-color: #8a6e2f; /* A lighter, worn wood color for hover */
    box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.3); /* A more pronounced shadow for hover */
  }
  
  .medieval-button:active {
    box-shadow: inset 1px 1px 2px 0px rgba(0, 0, 0, 0.5); /* An inset shadow for a pressed effect */
    transform: translateY(2px); /* Moves the button down to simulate a press */
  }

.prcontent{
    border-bottom: 3px dashed #1c5351;
    padding-bottom:20px;
}
.prrow {
  align-self: center;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  padding: 0 8px;

}

/* Create two equal columns that sits next to each other */
.prcolumn {
  padding: 0 8px;
}

.prcolumn img{
  max-height: 100px;
}
.medieval-button a{
  color: #eadfbd;
}
hr.dashed {
  border-top: 3px dashed #1c5351;
  border-bottom: transparent;
    border-left: transparent;
      border-right: transparent;
}
