/* slides images Cosmic*/


/* Full-screen background */
  .modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9);
  }

  /* Container for images */
  .modal-content {
    position: relative;
    margin: auto;
    top: 10%;
    width: 80%;
    max-width: 700px;
  }

  /* Close button */
  .close {
    position: absolute;
    top: 20px; right: 35px;
    color: white;
    font-size: 40px;
    cursor: pointer;
  }

  /* Next & prev buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%); /* Centers buttons vertically */
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    user-select: none;
    background-color: rgba(0,0,0,0.3);
    text-decoration: none;
    transition: 0.3s;
  }
  .next { right: 0; }
  .prev { left: 0; }
  .prev:hover, .next:hover { background-color: rgba(0,0,0,0.8); }

/* BUTTON STYLES AND LOCATION */
  div.slidebutton {position: absolute; font-size: 1em; top: 77%; left:40%; z-index: 100; background-color: red}

