body {
  background-image: url('../images/wall.png');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100% 100%;
}



#image1,
#image2,
#image3,
#image4 {

  width: 75%;
  height: auto;
  border: 10px solid rgb(229, 168, 0);
  cursor: pointer;

}


/* Create three equal columns that sits next to each other */
.column {
  flex: 25%;
  width: 100%;
  transform: translate(-2%, 15%);
  margin-left: 50px;
}



#arrowL {
  top: 45%;
  left: 2%;
  width: 10%;
  height: auto;
  position: fixed;
  z-index: 1;
}

#arrowR {
  top: 45%;
  right: 2%;
  width: 10%;
  height: auto;
  position: fixed;
  z-index: 1;

}

#jared {
    height: auto;
    width: 15%;
    position: fixed;
    bottom: 10px;
    right: 250px;
    cursor: pointer;
    
}

#crumpled {
width:150px;
height: 150px;
position:fixed;
bottom: 10px;
cursor: pointer;
}



/* Code for dialog box related content */

dialog {
  padding: 20px;
  border-radius: 8px;
  background-color: rgb(0, 0, 0);
  color: white;
  position: absolute;
  bottom: 0px;
  width: 100vw;
  font-size: 20px;
}


#dialogueText {
  white-space: pre-wrap; /* Preserves spaces and line breaks */
  overflow: hidden; /* Hides the full text initially */
}


/* Code that enlarges the images when you click them*/
/* Source: https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_modal_img*/


* {
  box-sizing: border-box;
}

/* Add Responsiveness */
.responsive {
  float: left;
  width: 25%;
}

/* The Modal (background) */
.modal {
  display: none; /* Hides content by default */
  position: fixed; 
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; /* Enable scroll */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9);
  z-index: 2; /* Places it above other objects */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* 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 {transform:scale(0)} 
  to {transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0.1)} 
  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;
}

/* Responsive Columns */
@media only screen and (max-width: 700px){
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
  .modal-content {
    width: 100%;
  }
}

@media only screen and (max-width: 500px){
  .responsive {
    width: 100%;
  }
}

/* Clear Floats */
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

