html { 
    background: rgb(15, 10, 30);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }

.name {
    margin-bottom: 0px;
}

.name h2 {
    display: block;
    color:rgb(220, 220, 220);
    text-align: left;
    padding-left: 3vmin;
    text-decoration: none;
    font-size: 6vmin;
}

.h2small {
    font-size: 4vmin !important;
    text-align: center !important;
}

.name p {
    display: block;
    color:rgb(220, 220, 220);
    text-align: left;
    padding-left: 3vmin;
    text-decoration: none;
    font-size: 3vmin;
}

.pbackground {
    background-color:rgba(0, 0, 0, 0.8);
}

div.gallery {
    margin: 5px;
    border: none;
    border-radius: 5px;
    align-self: auto;
    display: inline-block;
}
  
div.gallery img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
  
div.desc {
    padding: 15px;
    text-align: center;
    color: rgb(220, 220, 220);
}

.column {
    max-height: 200%;
    text-align: center;
    padding: 24px;
    font-size: 3vmin;
}

h3 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 3vmin;
    padding-left: 3vh;
    padding-top: 3vh;
}

a {
    color: rgba(200, 200, 255, 0.8);
    text-decoration: none;
}

.name a {
    text-decoration: underline;
}

iframe, video {
    width: 90%;
    margin: 5%;
    display: block;
}

.poster {
    color: rgb(220, 220, 220);
    text-align: center;
    font-size: 3vmin;
    margin: 15vmin;
}

.posterimg {
    width: 50%;
    padding: 24px;
}

.bposterimg {
    max-width: 80vw;
    max-height: 100vh;
    padding: 24px;
}

.aposterimg {
    height: auto;
    padding: 24px;
    max-width: 50%;
}

h2 {
    display: block;
    color:rgb(220, 220, 220);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 4vmin;
}

.row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
    color: rgb(220, 220, 220);
    text-align: center;
    font-size: 5vmin;
    margin: auto;
}

.column {
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
}

.column img {
    margin-top: 32px;
    vertical-align: middle;
    width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 1000px) {
.column {
    flex: 50%;
    max-width: 50%;
}

.row p {
    font-size: 6vmin;
}

.aposterimg {
    max-width: 67%;
}

.name h2 {
    font-size: 8vmin;
}

.name p {
    font-size: 4vmin;
}
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.column {
    flex: 100%;
    max-width: 100%;
}

.row p {
    font-size: 8vmin;
}

.aposterimg {
    max-width: 75%;
}

.name h2 {
    font-size: 10vmin;
}

.name p {
    font-size: 5vmin;
}
}

/* 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%;
  height: auto;
  max-width: 1000px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 1000px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* 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: 5vmin;
  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: 1000px){
  .modal-content {
    width: 100%;
  }
}