@import url('https://fonts.googleapis.com/css2?family=Libre+Caslon+Display&display=swap');

body {
    background-color: #000000;
    max-width: 100%;
    overflow-x: hidden;

  }

  #container {
    margin-left: auto;
    margin-right: auto;
    width: 70%;
    padding: 10px;
    text-align: center;
    margin-top: 2%;
}

.header_img {
    width: 100vw;
    position: relative;   
    margin-left: -50vw;
    height: 400px;
    margin-top: 60px;
    left: 50%;
    background-image: url(img/img_header.png);
    border-top: solid 1px #3f3f3f;
    border-bottom: solid 1px #3f3f3f;
}

.header_title {
  width: 100vw; 
  height: 80px;
  background-color: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid black;
  border-top: 1px solid black;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-top: 170px;
}

table {
    margin: auto;
    width: 50%;
    margin-top: 50px;
}

td {
    border: solid 10px #000000;
}

#myImg {
    border: 1px solid #3f3f3f;
    cursor: pointer;
    transition: 1.6s;
    height: 40vh;
    width: 250px;
    object-fit: cover; 
    filter: saturate(0%);
}

#myImg:hover {
    filter: saturate(100%);
    transform: scale(1.1);
    transition: 0.6s;
    position: relative;
    z-index: 111;
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 800px;
    max-height: 750px;
    border: 1px solid #000000;
}

.modal-content,
#caption {
    animation-name: zoom;
    animation-duration: 1s;
}

.modal-content,
#caption {
    animation-name: zoom;
    animation-duration: 1s;
}

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

.close {
    position: absolute;
    top: 10%;
    right: 10%;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

@media only screen and (max-width: 850px) {
  .close {
    top: 10%;
    right: 8%
  }
}

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

@media only screen and (max-width: 850px) {
  .modal-content {
    width: 60%;
    height: auto;
  }
}