@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Libre+Caslon+Display&display=swap');
* {
  text-align: center;
  font-family: 'Cinzel', serif;
  background-color: #000;
  color: #fff;
}

body {
  background-color: #000;
}

header#home {
  padding-top: 80px;
}

h3, hr {
  margin-top: 80px;
}

section p, section p em, p em, blockquote p, blockquote p em {
  text-align: left;
  font-family: 'Libre Caslon Display', serif;
  font-size: 16px;
}

.img-banner {
  overflow: hidden;
  display: flex;
  justify-content: space-around;
}
.carousel{
    background: #2f4357;
    margin-top: 20px;
}
.carousel .item{
    min-height: 720px; /* Prevent carousel from being distorted if for some reason image doesn't load */
}
.carousel .item img{
    margin: 0 auto; /* Align slide image horizontally center */
}

.navbar-toggle {
  /* (80px - button height 34px) / 2 = 23px */
  margin-top: 23px;
  padding: 9px 10px !important;
}

@media (min-width: 768px) {
  .navbar-nav > li > a {
    /* (80px - line-height of 27px) / 2 = 26.5px */
    padding-top: 26.5px;
    padding-bottom: 26.5px;
    line-height: 27px;
  }
}
