body{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color:#f50100
}

.main{
    position: relative;
    z-index: 1;
    font-size: 3vh;
    width: 90vw;
    display: flex;
    flex-direction: column;
    color: whitesmoke;
    background-color: #f50100;
    padding: 2%;
    box-shadow: 10px -15px 15px black, -10px -15px 15px black;
    text-align: justify;
    line-height: 3.8vh;
    font-family: Arial, Helvetica, sans-serif;
}

a{
    color: whitesmoke;
}

li{
    margin-left: 3vw;
    line-height: 5vh;
}


.gallery{
    position: relative;
    z-index: 3;
    background-color: #f50100;
    padding: 2vh 2vw;
    width: 90vw;
    display: flex;
    justify-content:space-between;
    box-shadow: 10px 0 15px black, -10px 0 15px black;
    overflow: auto;
}

.picbox{
  text-align: center;
}


img.tumb{
    height: 30vh;
    padding: 0 2vw;
}

p.bot{
  color: whitesmoke;
  text-align: center;
  margin-left: 2vw;
  margin-right: 2vw;
  font-size: 2.4vh;
}
  /* The Modal (background) */
  .modal {

    display: none;
    position: fixed;
    z-index: 10;
    padding-top: 10vh;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: black;
  }
  
  /* Modal Content */
  .modal-content {
    display: flex;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    max-width: 90%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  img.to_mod{
    margin-top: 4vh;
    margin-bottom: 5vh;
  }

  .tumbsgal{
    position: relative;
    padding-top: 2vh;
    display: flex;
    flex-direction: row;
    overflow-x:auto;
    height: 20vh;
  }
  
  /* The Close Button */
  .close {
    color: white;
    position: fixed;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    transition: 0.1s;
  }
  
  .close:hover,
  .close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* Hide the slides by default */
  .mySlides {
    display: none;
  }

  .watch{
    display: flex;
    text-align: center;
    justify-content: center;
    height: 65vh;

    padding: 0 4vw;
    transform: translate(0vw,-10vh);
  }
  .watch img{
    max-width: 60vw; 
    max-height: 60vh;
  }

  /* Next & previous buttons */
  .prev,
  .next {
    z-index: 3;
    cursor: pointer;
    position: fixed;
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    user-select: none;
    -webkit-user-select: none;
    top: 30vh;
  }
  .prev{
    left: 0;
    border-radius: 5px 0 0 5px;
  }

  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 0 5px 5px 0;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
    background-color: rgba(60, 60, 60, 0.8);
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    display: none;
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: fixed;
    top: 0;
    left: 0;
  }
  
  /* Caption text */
  .caption-container {
    font-size: larger;
    display: block;
    width: 60vw;
    position: absolute;
    z-index: 100;
    /* transform: translate(-2.5vw, 0); */
    text-align: center;
    padding: 2px 16px;
    color: white;
    top: 75vh;
  }
  
  img.demo {
    opacity: 0.6;
    padding: 0 0.5vw ;
    max-height: 15vh;
    cursor: pointer;
    transition: 0.1s;
  }
  
  .active,
  .demo:hover {
    opacity: 1;
  }
  
  img.hover-shadow {
    cursor: pointer;
    transition: 0.3s;
  }
  
  .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);
  }