        .ulist {
        font-family:Verdana;
        color:#000000;
        font-size: 16px;
        text-align: justify;
        }

        .header3 {       
          font-family:Verdana;
          color:#ffffff;
          font-size: 22px;
          font-weight: bold;
          text-align: center;
        }

        .headerUp {       
          font-family:Verdana;
          color:#ffffff;
          font-size: 23px;
          font-weight: bold;
        }

        @keyframes fadeIn {
          0% { opacity: 0; }
          100% { opacity: 1; }
        }

        .text {
        font-family:Verdana;
        color:#000000;
        font-size: 16px;
        margin-top: auto;
        margin-bottom: auto;
        margin-left: 8px;
        margin-right: 8px;
        text-align:left;
        }

        .header1 {
        font-family:Verdana;
        color:#6a6db8;
        font-size: 20px;
        font-weight: bold;
        }

        .blueboldtext{
        font-family:Verdana;
        color:#6a6db8;
        font-weight: bold;
        font-size: 16px;
        text-align: left;
        margin-left: 8px;
        margin-right: 8px;
        }

        .blackboldtext{
          font-family:Verdana;
          color:#000000;
          font-weight: bold;
          font-size: 16px;
          }

          .redboldtext{
            font-family:Verdana;
            color:rgb(182, 6, 6);
            font-weight: bold;
            font-size: 16px;
            }

        .center {
        border: 5px solid;
        margin: auto;
        width: 70%;
        padding: 8px;
        min-width: 700px;
        max-width: 800px;
        }
    
    .header2 {       
        font-family:Verdana;
        color:#000000;
        font-size: 18px;
        font-weight: bold;
        text-align: justify;}

    .item1 { grid-area: header;
        background: coral;}
    .item2 { grid-area: menu;
        background: white;}
    .item3 { grid-area: main;
        background: white;}
    .item4 { grid-area: right;
        background: white;}
    .item5 { grid-area: footer;
        background: white;}

    .grid-container {
  display: grid;
  grid-template-areas:
    'header header header header header header'
    'menu main main main right right'
    'menu footer footer footer footer footer';
  height: 90%;
  max-width: 1800px;
  background-color: white;
  border-radius: 10px;
  box-shadow:0px 2px 2px 5px rgba(0,0,0,0.05); 
  margin: auto;
}

.grid-container > div {
    text-align: center;
    padding: 10px 0;
    font-size: 16px;
    border-radius: 10px;
    /* box-shadow:0px 2px 2px 5px rgba(0,0,0,0.05); */
    margin: 5px 5px 5px 5px;
  }

.card-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 450px;
}

.card{
    width:auto;
    background-color: #ffffff;
    overflow: hidden;
    border-style: solid;
    border-color: #f1eeee;
}

.card img{
    transition: transform .2s; /* Animation */ 
    z-index:999; 
    cursor: pointer;
}

.btn{
    display: inline-block;
    width: 150px;
    padding: 10px 10px;
    font-size: 14px;
    font-weight: bold;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    background-color: #5c5ce6;
    text-decoration: none;
    border: none;
    border-radius: 10px;
outline-color: #5c5ce6;
    margin-top: 10px;
    
    color: #fff;
}

.btn:hover {

  color: rgb(255, 255, 255);
  transition: transform .2s; /* Animation */ 
  z-index:999; 
  cursor: pointer;
  transform: scale(1.3); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.btn:focus {
  outline: none;
}

/* MODAL CSS */
 /* Style the Image Used to Trigger the Modal */
 body {font-family: Arial, Helvetica, sans-serif;}
        
        #myImg {
          border-radius: 5px;
          cursor: pointer;
          transition: 0.3s;
        }
        
        #myImg: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 */
        #caption {
          margin: auto;
          display: block;
          width: 80%;
          max-width: 700px;
          text-align: center;
          color: #ccc;
          padding: 10px 0;
          height: 150px;
        }
        
        /* Add Animation */
        .modal-content, #caption {  
          -webkit-animation-name: zoom;
          -webkit-animation-duration: 0.6s;
          animation-name: zoom;
          animation-duration: 0.6s;
        }
        
        @-webkit-keyframes zoom {
          from {-webkit-transform:scale(0)} 
          to {-webkit-transform:scale(1)}
        }
        
        @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%;
          }
        }
/* /MODAL CSS */


/* Zoom Style */
.zoom {
  /* display:block; */
  transition: transform .2s; /* Animation */ 
  z-index:999; 
  cursor: pointer;
  animation:fadeIn 4s;
  /* margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: auto; */
}

.zoom:hover {
  transform: scale(1.3); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
/* /Zoom Style */

/* draggable modal */
.simmodal{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
}
.simmodal-body{
    position: absolute;
    width: wrap;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.507);
    border-radius: 5px;
    padding: 20px 30px;
    user-select: none;
}
.simmodal-body h3{
    font-size: 16px;
}
.simmodal-body span{
    font-size: 28px;
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.507);
    background-color: #fff;
    cursor: pointer;
}
/* /draggable modal */

/*buttons*/
a {
  text-decoration: none;
  display: inline-block;
  padding: 8px 16px;
}

a:hover {
  background-color: #ddd;
  color: black;
}

.previous {
  background-color: #f1f1f1;
  color: black;
}

.next {
  background-color: #2765c4;
  color: white;
}

.round {
  border-radius: 50%;
}

div.sticky {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
}