

@font-face {
  font-family: formalh;
  src: url(fonts/Tajawal-Light.ttf);
}

@font-face {
  font-family: formalp;
  src: url(fonts/Lateef-ExtraLight.ttf);
}


body {
     margin: 0px;
     direction: rtl;
  }
  
  h1 {
    color: black;
    font-family: "formalh";
    font-size: 300%;
  }

  h2 {
    color: black;
    font-family: "formalh";
    font-size: 250%;
  }

  h3 {
    color: black;
    font-family: "formalh";
    font-size: 200%;
  }

  h4 {
    color: black;
    font-family: "formalh";
    font-size: 150%;
  }
  
  p {
    color: black;
    font-family: "formalp";
    font-size: 150%;
  }


  .articleimg {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }

  ul {
    color: black;
    font-family: "formalp";
    font-size: 150%;
  }

  ol {
    color: black;
    font-family: "formalp";
    font-size: 150%;
  }

  a {
    color: black;
    font-family: "formalh";
    font-size: 100%;
  }

  a:hover {
    color: gray;
  }




  table {
    border-collapse: collapse;
    width: 100%;
  }
  
  td, th {
    border: 1px solid #ddd;
    padding: 8px;
  }
  
  tr:nth-child(even){background-color: #f2f2f2;}
  
  tr:hover {background-color: #ddd;}
  
  th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: right;
    background-color: #04AA6D;
    color: white;
    font-family: "formalh";
  }

  td {
    font-family: "formalp";
  }

  input[type=text] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: "formalp";
    font-size: 100%;
    border-radius: 4px;
  }

  .search {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: "formalp";
    font-size: 100%;
    border-radius: 4px;
    background-color: white;
    padding-left: 60px;
  }

  select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: "formalp";
    font-size: 100%;
    border-radius: 4px;
  }

  textarea {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: "formalp";
    font-size: 100%;
    border-radius: 4px;
  }

   /* Customize the label (the container) */
.checkboxcontainer {
  display: block;
  position: relative;
  padding-right: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width:fit-content;
}

/* Hide the browser's default checkbox */
.checkboxcontainer input[type=checkbox]  {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  right: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkboxcontainer:hover input[type=checkbox]  ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkboxcontainer input[type=checkbox]:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkboxcontainer input[type=checkbox]:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkboxcontainer .checkmark:after {
  right: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* Customize the label (the container) */
.radiocontainer {
  display: block;
  position: relative;
  padding-right: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width:fit-content;
}

/* Hide the browser's default radio button */
.radiocontainer input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  right: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.radiocontainer:hover input[type=radio] ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radiocontainer input[type=radio]:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radiocontainer input[type=radio]:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radiocontainer .checkmark:after {
  top: 9px;
  right: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}
  
  input[type=submit] {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: "formalp";
    font-size: 100%;
  }
  
  input[type=submit]:hover {
    background-color: #45a049;
  }

  button {
    width: 200 px;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: "formalp";
    font-size: 100%;
    float: left;
  }
  
  button:hover {
    background-color: #45a049;
  }

  label {
    font-family: "formalh";
  }

  .btn {
    width: 200 px;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: "formalh";
    font-size: 100%;
    text-decoration: none;
  }
  
  .btn:hover {
    background-color: #75da7a;
    color: white;
  }

  .pagination {
    display: inline-block;
  }
  
  .pagination a {
    color: black;
    float: right;
    padding: 8px 16px;
    text-decoration: none;
  }
  
  .pagination a.active {
    background-color: #4CAF50;
    color: white;
  }

  .container {
    border-radius: 5px;
  }
  
  .col-25 {
    float: right;
    width: 25%;
    margin-top: 6px;
  }

  .col-33 {
    float: right;
    width: 33.33%;
    margin-top: 6px;
  }

  .col-50 {
    float: right;
    width: 50%;
    margin-top: 6px;
  }
  
  .col-75 {
    float: right;
    width: 75%;
    margin-top: 6px;
  }

  .col-100 {
    float: right;
    width: 100%;
    margin-top: 6px;
  }
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }

  /* Responsive layout on small screens */
@media all and (max-width: 1024px) {
  .col-25, .col-33, .col-50, .col-75, .col-100 {
    width: 100%;
    margin-top: 0;
}
}

/* Responsive layout on small screens */
@media all and (max-width: 414px) {
  .col-25, .col-33, .col-50, .col-75, .col-100 {
    width: 100%;
    margin-top: 0;
  }
}

  .nav
  {
    top: 0;
    position: sticky;
    z-index:1;
    background-color: white;
  }

  .nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  
  .nav ul li {
    float: right;
  }
  
  .nav ul li a {
    display: block;
    color: gray;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 150%;
  }
  
  .nav ul li a:hover {
    color: black;
    background-color: lightgray;
  }

    /* Responsive layout on small screens */
@media all and (max-width: 1024px) {
  .nav
  {
    display: none;
  }
}

/* Responsive layout on small screens */
@media all and (max-width: 414px) {
  
}

 /* The side navigation menu */
.sidenav {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: 0;
  right: 0;
  background-color: #111; /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
  padding: 8px 32px 8px 8px;
  text-decoration: none;
  font-size: 25px;
  color: lightgray;
  display: block;
  transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 180px;
  font-size: 36px;
  margin-left: 50px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
  transition: margin-left .5s;
  padding: 20px;
}

.respnav
{
  position: sticky; /* Set the navbar to fixed position */
  top: 0; /* Position the navbar at the top of the page */
  width: 100%; /* Full width */
  z-index:1;
  background-color: white;
}
.respnav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.respnav ul li {
  float: left;
  cursor: pointer;
}

.respnav ul li a {
  display: block;
  color: gray;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.respnav ul li a:hover {
  background-color: lightgray;
  color: black;
}

.respnav ul .menu {
  float: right;
}

.respnav ul .menu a:hover {
  background-color: black;
}

.menuicon
{
  padding: 3px 16px;
}

.menuicon div {
  width: 15px;
  height: 2px;
  background-color: black;
  margin: 3px 0;
}

.respnav ul .menu a:hover .menuicon div {
  background-color: white;
}

    /* Responsive layout on small screens */
    @media (max-width: 1024px) {
      .respnav
      {
        display: block;
      }
    }
    
    /* Responsive layout on small screens */
    @media (max-width: 414px) {
      
    }

    .home {
      position: relative;
      text-align: center;
      background-image: url(../images/homebg.jpeg);
      background-repeat: no-repeat;
      background-size: 100% 100%;
      height: 100vh;
    }

    .homeheading {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .homeheading h1
    {
      color: rgb(228, 228, 228);
      background-color: rgb(46, 46, 46);
      padding: 30px;
      opacity: 0.7;
    }

    .homeheading img
    {
      width: 90%;
      height: 90%;
      border-radius: 10px;
    }

    @media all and (max-width: 1024px) {
      .home {
        background-image: url(../images/homebgsmall.jpeg);
        background-repeat: no-repeat;
        background-size: 100% 100%;
        height: 100vh;
      }
    }

    @media all and (max-width: 320px) {
      .homeheading h1
      {
        padding: 15px;
      }
    }  

  .pagecontent
  {
    max-width:1564px;
    margin: auto;
  }

  .content 
  {
    padding: 50px;
  }

  header {
    background-color: #666;
    padding: 30px;
    text-align: center;
    color: white;
  }  

.announcment
{
  text-align: center;
  padding-right: 15%;
  padding-left: 15%;
  padding-top: 50px;
  padding-bottom: 50px;
}


.announcment ol
{
  text-align: center;
  width: fit-content;
  display: inline-block;
}

.announcment ol li
{
  text-align: right;
}

.announcment ul
{
  text-align: center;
  width: fit-content;
  display: inline-block;
  list-style: none;
}

.announcment ul li
{
  text-align: center;
}

@media (max-width: 1024px) {

}




.museuminfo
{
      position: relative;
      text-align: center;
      background-image: url(../images/museuminfobg.jpeg);
      background-repeat: no-repeat;
      background-size: 100% 100%;
      height: 350px;
}

.museuminfoheading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.museuminfoheading h1
{
  color: rgb(228, 228, 228);
}

/* Responsive layout on small screens */
@media all and (max-width: 1024px) {
  .museuminfo {
    background-image: url(../images/museuminfobgsmall.jpeg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 350px;
  }
}



.museumquotes
{
      position: relative;
      text-align: center;
      background-image: url(../images/museumquotesbg.jpeg);
      background-repeat: no-repeat;
      background-size: 100% 100%;
      height: 350px;
}

.museumquotesheading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.museumquotesheading h1
{
  color: rgb(228, 228, 228);
}

/* Responsive layout on small screens */
@media all and (max-width: 1024px) {
  .museumquotes {
    background-image: url(../images/museumquotesbgsmall.jpeg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 350px;
  }
}


.antiques
{
      position: relative;
      text-align: center;
      background-image: url(../images/antiquesbg.jpeg);
      background-repeat: no-repeat;
      background-size: 100% 100%;
      height: 350px;
}

.antiquesheading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.antiquesheading h1
{
  color: rgb(228, 228, 228);
}

@media all and (max-width: 1024px) {
  .antiques {
    background-image: url(../images/antiquesbgsmall.jpeg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 350px;
  }
}


.antiquesgallery
{
  text-align: center;
  padding-right: 15%;
  padding-left: 15%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.antiquesboxcontainer
{
  padding-right: 15%;
  padding-left: 15%;
  padding-top: 0px;
  padding-bottom: 50px;
}

.antiquesbox
{
  float: right;
  width: 23%;
  padding: 7px;
}

.antiquesbox img
{
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

/* Clear floats after the columns */
.antiquesboxcontainer::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout on small screens */
@media all and (max-width: 1024px) {
  .antiquesboxcontainer .antiquesbox {
    padding: 5px;
  }
}

/* Responsive layout on small screens */
@media all and (max-width: 414px) {
  .antiquesboxcontainer .antiquesbox {
    width: 100%;
    padding-bottom: 10px;
    padding-right: 0px;
    padding-left: 0px;
    padding-top: 0px;
  }
}



.visitors
{
      position: relative;
      text-align: center;
      background-image: url(../images/visitorsbg.jpeg);
      background-repeat: no-repeat;
      background-size: 100% 100%;
      height: 350px;
}

.visitorsheading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.visitorsheading h1
{
  color: rgb(228, 228, 228);
}

@media all and (max-width: 1024px) {
  .visitors {
    background-image: url(../images/visitorsbgsmall.jpeg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 350px;
  }
}


.visitorsgallery
{
  text-align: center;
  padding-right: 15%;
  padding-left: 15%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.visitorsboxcontainer
{
  padding-right: 15%;
  padding-left: 15%;
  padding-top: 0px;
  padding-bottom: 50px;
}

.visitorsbox
{
  float: right;
  width: 23%;
  padding: 7px;
}

.visitorsbox img
{
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

/* Clear floats after the columns */
.visitorsboxcontainer::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout on small screens */
@media all and (max-width: 1024px) {
  .visitorsboxcontainer .visitorsbox {
    padding: 5px;
  }
}

/* Responsive layout on small screens */
@media all and (max-width: 414px) {
  .visitorsboxcontainer .visitorsbox {
    width: 100%;
    padding-bottom: 10px;
    padding-right: 0px;
    padding-left: 0px;
    padding-top: 0px;
  }
}







/* Style the Image Used to Trigger the Modal */
#myImg1, #myImg2, #myImg3, #myImg4, #myImg5, #myImg6, #myImg7, #myImg8, #myImg9, #myImg10, #myImg11, #myImg12, #myImg13, #myImg14, #myImg15, #myImg16, #myImg17, #myImg18, #myImg19, #myImg20, #myImg21 {
  cursor: pointer;
  transition: 0.3s;
}

#myImg1:hover, #myImg2:hover, #myImg3:hover, #myImg4:hover, #myImg5:hover, #myImg6:hover, #myImg7:hover, #myImg8:hover, #myImg9:hover, #myImg10:hover, #myImg11:hover, #myImg12:hover, #myImg13:hover, #myImg14:hover, #myImg15:hover, #myImg16:hover, #myImg17:hover, #myImg18:hover, #myImg19:hover, #myImg20:hover, #myImg21:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: white;
  padding: 10px 0;
  height: 150px;
  font-family: "formalp";
  font-size: 150%;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption { 
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

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

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}


.contact
{
      position: relative;
      text-align: center;
      background-image: url(../images/contactbg.jpeg);
      background-repeat: no-repeat;
      background-size: 100% 100%;
      height: 350px;
}

.contactheading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contactheading h1
{
  color: rgb(228, 228, 228);
}

/* Responsive layout on small screens */
@media all and (max-width: 1024px) {
  .contact {
    background-image: url(../images/contactbgsmall.jpeg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 350px;
  }
}


.contactinfo
{
  text-align: center;
  padding-right: 15%;
  padding-left: 15%;
  padding-top: 50px;
  padding-bottom: 50px;
}

/* Responsive layout on small screens */
@media all and (max-width: 1024px) {
.contactinfo img
{
  width: 90%;
  height: 90%;
}
}


.maintitle
{
  padding: 50px;
}

.maintitle .titletext
{
  float: right;
  width: 50%;
}

.maintitle .titletext h1
{
  margin: 0px 0px 30px 0px;
}

.maintitle .titletext p
{
  margin: 0px 0px 30px 30px;
}

.maintitle .titleimage
{
  float: left;
  width: 50%;
}

.maintitle .titleimage img
{
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Clear floats after the columns */
.maintitle::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout on small screens */
@media all and (max-width: 768px) {
  .maintitle  .titletext, .maintitle .titleimage {
    width: 100%;
    height: auto;
  }

  .maintitle .titletext h1
{
  margin: 30px 0px 30px 0px;
}

}

.icondesc
{
  text-align: center;
  padding: 50px;
}

.icondesc .icondesccontent
{
  float: right;
  width: 33.33%;
}

.icondesc .icondesccontent h3
{
  margin: 20px 0px 20px 0px;
}

.icondesc .icondesccontent p
{
  margin: 0px 30px 30px 0px;
}

/* Clear floats after the columns */
.icondesc::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout on small screens */
@media all and (max-width: 1024px) {
  .icondesc .icondesccontent
{
  width: 50%;
}
}

/* Responsive layout on small screens */
@media all and (max-width: 414px) {
  .icondesc .icondesccontent {
    width: 100%;
    height: auto;
    margin: 0px;
  }
}

.imgdesc
{
  padding: 50px;
}

.imgdesc .imgdesccontent
{
  float: right;
  width: 33.33%;
}

.imgdesc .imgdesccontent img
{
  margin: 0px 0px 30px 30px;
  border-radius: 10px;
}

.imgdesc .imgdesccontent h3
{
  margin: 0px 0px 30px 30px;
}

.imgdesc .imgdesccontent p
{
  margin: 0px 0px 30px 30px;
}



/* Clear floats after the columns */
.imgdesc::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout on small screens */
@media all and (max-width: 1024px) {
  .imgdesc .imgdesccontent
{
  width: 50%;
}

.imgdesc .imgdesccontent img
{
  width: 98%;
  height: auto;
}

}

/* Responsive layout on small screens */
@media all and (max-width: 414px) {

  .imgdesc .imgdesccontent {
    width: 100%;
    margin: 0px;
  }

  .imgdesc .imgdesccontent img
{
  width: 100%;
  height: auto;
}

}


.iconexpcontainer
{
  padding: 50px;
}

.iconexpcontainer .iconexp
{
  float: right;
  width: 50%;
}

.iconexpcontainer .iconexp .iconimg
{
  float: right;
  width: 25%;

}

.iconexpcontainer .iconexp .iconimg img
{
  width: fit-content;
  height: fit-content;
}

.iconexpcontainer .iconexp .icontext
{
  vertical-align: middle;
  float: right;
  width: 75%;
}

.iconexpcontainer .iconexp .icontext h3
{
  margin: 0px 0px 30px 30px;
}

.iconexpcontainer .iconexp .icontext p
{
  margin: 0px 0px 30px 30px;
}

/* Clear floats after the columns */
.iconexpcontainer::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout on small screens */
@media all and (max-width: 1024px) {
  .iconexpcontainer .iconexp {
    width: 100%;
    height: auto;
  }
}

/* Responsive layout on small screens */
@media all and (max-width: 414px) {
  .iconexpcontainer .iconexp {
    width: 100%;
    height: auto;
  }
  .iconexpcontainer .iconexp .iconimg
  {
      width: 100%;
  }
  
  .iconexpcontainer .iconexp .icontext
  {
    width: 100%;
  }

}

.imageboxcontainer
{
  padding: 50px;
}

.imagebox
{
  float: right;
  width: 32.5%;
  padding: 5px;
}

.imageboxlabel
{
  background-color: gray;
  width: 100%;
}

.imagebox a .imageboxlabel h3
{
  margin: 0px;
  padding: 10px;
}

.imagebox a
{
  text-decoration: none;
}

.imagebox a img
{
  width: 100%;
  height: auto;
  display: block;
}

/* Clear floats after the columns */
.imageboxcontainer::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout on small screens */
@media all and (max-width: 1024px) {
  .imageboxcontainer .imagebox {
    width: 48%;
  }
}

/* Responsive layout on small screens */
@media all and (max-width: 414px) {
  .imageboxcontainer .imagebox {
    width: 100%;
  }
}

footer {
    background-color: rgb(63, 63, 63);
    padding: 10px;
    text-align: center;
}

footer p {
  color: white
}

