@import url("https://fonts.googleapis.com/css2?family=Liu+Jian+Mao+Cao&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  font-family: "Montserrat", sans-serif;
}

.bg-white {
  background-color: white;
}

.font-white {
  color: white;
}

.title-font {
  font-family: "Liu Jian Mao Cao", cursive;
}

.default-font {
  font-family: "Montserrat", sans-serif;
}

.margin {
  margin: 150px auto;
}

.title h1 {
  font-size: 5rem;
}

.button {
  margin: 50px auto;
}

.button a {
  background-color: white;
  text-decoration: none;
  color: black;
  padding: 20px 50px;
}

.button a:hover {
  color: white;
  background-color: black;
}

.button-2 {
  margin: 50px auto;
}

.button-2 a {
  background-color: black;
  text-decoration: none;
  color: white;
  padding: 20px 50px;
}

.button-2 a:hover {
  color: white;
  opacity: 0.5;
}

.subtitle {
  margin: 50px;
  font-family: "Montserrat", sans-serif;
}

.subtitle p {
  font-size: 30px;
}

.jumbo-image {
  background-image: url("https://images.unsplash.com/photo-1545396047-e6bd84442366?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1350&q=80");
  background-position: center;
  background-size: cover;
  height: 800px;
}

.desc-img {
  background-image: url("https://images.unsplash.com/photo-1545396047-a84defe3941b?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=634&q=80");
  height: 500px;
  background-position: center;
  background-size: cover;
}

.about {
  margin: 200px auto;
}

.desc-info {
  padding: 20px;
  margin: 100px 20px;
}

.desc-info .desc-subtitle {
  font-size: 12px;
}

.desc-info .desc-title {
  margin-bottom: 50px;
}

.desc-footer {
  margin-top: 100px;
}

.desc-footer h1 {
  font-weight: bold;
}

.jumbo-title h1 {
  font-weight: bold;
}

.ceremony {
  margin: 90px auto;
}

.jumbo-title-desc h1 {
  font-size: 16px;
  font-weight: bold;
  margin: 15px auto;
}

.jumbo-title-desc p {
  font-size: 13px;
}

.thumbnail {
  margin: 10px;
}

.thumbnail img {
  width: 100%;
  height: 100%;
}

.desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.desc h2 {
  width: 70%;
  padding: 20px;
  margin: 20px;
}

footer {
  margin: 100px auto;
}

#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {
  opacity: 0.7;
}

/* 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%;
  max-width: 700px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  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: 40px;
  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: 700px) {
  .modal-content {
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */