@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

* {
  font-family: "Lucida Console";
  box-sizing: border-box;
  margin: 0;
  overflow: hidden;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Lucida Console";
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: black;
  text-align: start;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  background-image: url(../pics/styling_pics/whiteBricks.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}


/*HOME PAGE--------------------------------------*/
.homePage {
  overflow: scroll;
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}


#openingHeader {
  color: white;
  word-wrap: normal;
  font-size: 100px;
  text-align: center;
  font-family: "Lucida Console";
  line-height: 90%;
  font-weight: 900;
  height: 80%;
  left: 45%;
  top: 29.5%;
  background-color: transparent;
  padding: 10px;
  position: absolute;
  letter-spacing: 0.03rem;
}

#openingHeader {
  -webkit-text-stroke: 1px white;
  color: black;
  text-shadow:
    3px 3px 0 white,
    -1px -1px 0 white,
    1px -1px 0 white,
    -1px 1px 0 white,
    1px 1px 0 white;
  text-shadow: 2px 2px 8px rgb(11, 185, 205);
}

#quickQuote {
  color: black;
  font-size: 26px;
  text-align: center;
  font-family: "Lucida Console";
  font-style: italic;
  font-weight: 300;
  background-color: transparent;
  margin-top: 5px;
  position: absolute;
  top: 73%;
  width: 100%;
  left: 16%
}


.pictureFrame {
  background: black;
  padding: 15px 13px;
  right: 11%;
  top: 21%;
  position: absolute;
  z-index: 0;
  box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.5);
  max-width: 360px;
  height: 55%;
  width: 22%;
  margin-bottom: 20px;
  overflow: hidden;
}

#openingPic {
  height: 100%;
  width: 100%;
}
.pictureFrame img {
  object-fit: cover;
  object-position: center;
  filter: brightness(1.1);
  /* scale: 1.1; */
}
/* .pictureFrame::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  pointer-events: none;
} */
/* .pictureFrame img {
  width: 100%;
  height: auto;
  object-fit: cover;
 transition: transform 0.3s ease-in-out; 
} */

/* .pictureFrame img:hover {
  -webkit-transform: scale(0.993);
  transform: scale(0.993);
  opacity: 0.75;
}

.pictureFrame:hover .caption {
  color: white;
  font-size: 25px;
  font-weight: 200;
  padding: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
} */


.hangingLight {
  background-color: transparent;
  width: 155px;
  height: 255px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.name {
  position: relative;
  width: 1100px;
  height: 500px;
  right: 26%;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}


/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  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 (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  height: 90%;
  max-width: 700px;
  margin-bottom: 100px;
  background-color: black;

}

/* Caption of Modal Image */
/* #caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
} */

/* 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 {
    -webkit-transform: scale(0)
  }

  to {
    -webkit-transform: scale(1)
  }
}

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

  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;
  height: 30px;
}

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


/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
  }
}

/***********************************************************/
/* Media query for smaller screens */
@media (max-width: 1250px) {
  .pictureFrame {
    height: 45%;
    right: 2%;
  }
}
@media (max-width: 960px) {
  .name{
    left: 40%;
    transform: translateX(-50%);
    width: 100%;
  }

  .hangingLight {
    height: 40%;
    position: absolute;
    left: 39%;
    transform: translateX(-50%);
  }

  #openingHeader {
    font-size: 4em;
    position: absolute;
    height: auto;
    width: 100%;
    top: 17vh;
    left: 0%;
  }

  #quickQuote {
    font-size: 1.5em;
    top: 50vh;
    width: 100%;
    padding: 15px 20px 15px 15px;
    left: 1%
  }

  .pictureFrame {
    width: 20%;
    height: auto;
    padding: 10px;
    left: 85%;
    transform: translateX(-50%);
    position: absolute;
    top: 5vh;
  }

  .caption {
    display: none;
  }
}

@media (max-width: 940px) {
  .name {
    left: 40%;
    transform: translateX(-50%);
    width: 100%;
  }

  .hangingLight {
    height: 40%;
    position: absolute;
    left: 39%;
    transform: translateX(-50%);
  }

  #openingHeader {
    font-size: 4em;
    position: absolute;
    height: auto;
    width: 100%;
    top: 18vh;
    left: 0%;
  }

  #quickQuote {
    font-size: 1.5em;
    top: 68vh;
    width: 100%;
    padding: 15px 20px 15px 15px;
    left: 1%
  }

  .pictureFrame {
    width: 20%;
    height: auto;
    padding: 10px;
    left: 85%;
    transform: translateX(-50%);
    position: absolute;
    /* margin: 1rem auto 2rem; */
    top: 5vh;
  }

  .caption {
    display: none;
  }
}

@media (max-width: 845px) {
  .name {
    left: 43%;
    transform: translateX(-50%);
    width: 100%;
  }

  .hangingLight {
    height: 40%;
    left: 37%;
    transform: translateX(-50%);
  }

  #openingHeader {
    font-size: 4em;
    position: absolute;
    height: auto;
    width: 100%;
    top: 19vh;
    left: 0%;
  }

  #quickQuote {
    font-size: 1.5em;
    top: 50vh;
    width: calc(100% - 90px);
    padding: 15px 20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .pictureFrame {
    width: 20%;
    height: auto;
    padding: 10px;
    left: 85%;
    transform: translateX(-50%);
    position: absolute;
    top: 9vh;
  }
}

@media (max-width: 812px) {
  .name {
    left: 43%;
    transform: translateX(-50%);
    width: 100%;
  }

  .hangingLight {
    height: 39%;
    left: 36%;
    transform: translateX(-50%);
  }

  #openingHeader {
    font-size: 4em;
    position: absolute;
    height: auto;
    width: 100%;
    top: 18vh;
  }

  #quickQuote {
    font-size: 1.4em;
    top: 50vh;
    width: calc(100% - 90px);
    padding: 15px 20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .pictureFrame {
    width: 18%;
    height: auto;
    padding: 8px;
    left: 85%;
    transform: translateX(-50%);
    position: absolute;
    top: 9vh;
  }
}

@media (max-width: 768px) {
  .name {
      left: 43%;
      transform: translateX(-50%);
      width: 100%;
    }

  .hangingLight {
    height: 40%;
    left: 35%;
    transform: translateX(-50%);
  }

  #openingHeader {
    font-size: 4em;
    position: absolute;
    height: auto;
    width: 100%;
    top: 18vh;
  }

  #quickQuote {
    font-size: 1.5em;
    top: 50vh;
    width: calc(100% - 90px);
    padding: 15px 20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .pictureFrame {
    width: 20%;
    height: auto;
    padding: 10px;
    left: 85%;
    transform: translateX(-50%);
    position: absolute;
    top: 10vh;
  }
}

@media (max-width: 740px) {
  .name {
    left: 43%;
    transform: translateX(-50%);
    width: 100%;
  }

  .hangingLight {
    height: 39%;
    left: 35%;
    transform: translateX(-50%);
  }

  #openingHeader {
    font-size: 4em;
    position: absolute;
    height: auto;
    width: 100%;
    top: 17vh;
    left: 0%;
  }

  #quickQuote {
    font-size: 1.5em;
    top: 50vh;
    width: calc(100% - 90px);
    padding: 15px 20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .pictureFrame {
    width: 20%;
    height: auto;
    padding: 10px;
    left: 85%;
    transform: translateX(-50%);
    position: absolute;
    top: 9vh;
  }
}

@media (max-width: 600px) {
.name {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }

  .hangingLight {
    height: 31%;
    position: absolute;
    left: 31%;
    transform: translateX(-50%);
  }

  #openingHeader {
    font-size: 4em;
    position: absolute;
    height: auto;
    width: 100%;
    top: 12.5vh;
  }

  #quickQuote {
    font-size: 1.5em;
    top: 34vh;
    width: 100%;
    padding: 15px 20px 15px 15px;
    left: 50%;
    transform: translateX(-50%);
  }

  .pictureFrame {
    width: 45%;
    height: auto;
    padding: 10px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    margin: 1rem auto 2rem;
    top: 45vh;
  }
}

@media (max-width: 600px) {
#openingHeader {
    font-size: 2.5em;
    position: absolute;
    height: auto;
    width: 100%;
    top: 10vh;
  }
  .hangingLight {
    height: 25%;
    position: absolute;
    left: 38%;
    transform: translateX(-50%);
  }
  #quickQuote {
    font-size: 1em;
    top: 36vh;
    width: 100%;
    padding: 15px 20px 15px 15px;
    left: 50%;
    transform: translateX(-50%);
  }
  .pictureFrame {
    width: 25%;
    height: 30%;
    padding: 10px;
    left: 27%;
    transform: translateX(-50%);
    position: absolute;
    margin: 1rem auto 2rem;
    top: 46vh;
  }
}

@media (max-width: 430px) {
.hangingLight {
    height: 31%;
    position: absolute;
    left: 25%;
    transform: translateX(-50%);
  }

  #openingHeader {
    font-size: 4em;
    position: absolute;
    height: auto;
    width: 100%;
    top: 13vh;
  }

  #quickQuote {
    font-size: 1.5em;
    top: 36vh;
    width: 100%;
    padding: 15px 20px 15px 15px;
    left: 50%;
    transform: translateX(-50%);
  }

  .pictureFrame {
    position: absolute;
    width: 45%;
    height: auto;
    padding: 10px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    margin: 1rem auto 2rem;
    top: 53vh;
  }
}

@media (max-width: 425px) {
  .hangingLight {
    height: 34%;
    position: absolute;
    left: 24%;
    transform: translateX(-50%);
  }

  #openingHeader {
    font-size: 4em;
    position: absolute;
    height: auto;
    width: 100%;
    top: 15.5vh;
  }

  #quickQuote {
    font-size: 1.5em;
    top: 39vh;
    width: 100%;
    padding: 15px 20px 15px 15px;
    left: 50%;
    transform: translateX(-50%);
  }

  .pictureFrame {
    position: absolute;
    width: 45%;
    height: auto;
    padding: 10px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    margin: 1rem auto 2rem;
    top: 53vh;
  }
}

@media (max-width: 414px) {
  .hangingLight {
    height: 40%;
    position: absolute;
    left: 23%;
    transform: translateX(-50%);
  }

  #openingHeader {
    font-size: 4em;
    position: absolute;
    height: auto;
    width: 100%;
    top: 17.5vh;
  }

  #quickQuote {
    font-size: 1.5em;
    width: 100%;
    padding: 15px 20px 15px 15px;
    left: 50%;
    transform: translateX(-50%);
  }

  .pictureFrame {
    position: absolute;
    width: 45%;
    height: auto;
    padding: 10px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    margin: 1rem auto 2rem;
    top: 53vh;
  }
}

@media (max-width: 390px) {
  .hangingLight {
    height: 31%;
    position: absolute;
    left: 21%;
    transform: translateX(-50%);
  }

  #openingHeader {
    font-size: 4em;
    position: absolute;
    height: auto;
    width: 100%;
    top: 14vh;
  }

  #quickQuote {
    top: 35vh;
    left: 50%;
    transform: translateX(-50%);
  }

  .pictureFrame {
    position: absolute;
    width: 45%;
    height: auto;
    padding: 10px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    margin: 1rem auto 2rem;
    top: 52vh;
  }
}

@media (max-width: 375px) {
.hangingLight {
    height: 34%;
    position: absolute;
    left: 21%;
    transform: translateX(-50%);
  }

  #openingHeader {
    font-size: 4em;
    position: absolute;
    height: auto;
    width: 100%;
    top: 16vh;
  }

  #quickQuote {
    font-size: 1.5em;
    top: 40vh;
    width: 100%;
    padding: 15px 20px 15px 15px;
    left: 50%;
    transform: translateX(-50%);
  }

  .pictureFrame {
    width: 45%;
    height: auto;
    padding: 10px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    margin: 1rem auto 2rem;
    top: 55vh;
  }
}

@media (max-width: 360px) {

  .hangingLight {
    height: 30%;
    position: absolute;
    left: 23%;
    transform: translateX(-50%);
  }

  #openingHeader {
    font-size: 3.5em;
    position: absolute;
    height: auto;
    width: 100%;
    top: 13vh;
  }

  #quickQuote {
    font-size: 1.5em;
    top: 35vh;
    width: 100%;
    padding: 15px 20px 15px 15px;
    left: 50%;
    transform: translateX(-50%);
  }

  .pictureFrame {
    width: 40%;
    height: auto;
    padding: 10px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    margin: 1rem auto 2rem;
    top: 52vh;
  }
}
