/* @import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@100;200;300;400;500;600;700&display=swap'); */

/* base styles */
* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 12px;
}

body {
  color: #1f2940;
}

.title-font, h1, h2, h3, h4, h5, h6 {
  font-family: "Marcellus", serif;
}

.logo {
  font-family: "Marcellus";
  font-size: 2rem;
  text-align: center;
  opacity: 1.0;
}

.hero {
  position: relative;
  padding-top: 250px;
  padding-bottom: 250px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(0, 0, 0, 0.5);
}

.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero p {
  color: white;
  font-family: "Cormorant Garamond", serif;
  text-align: center;
  line-height: 0.8;
}

.about {
  padding: 200px 20px;
}

.about b {
  font-weight: 700;
}
