@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.2/font/bootstrap-icons.css");
@import url("https://fonts.googleapis.com/css2?family=IM+Fell+French+Canon:ital@1&display=swap");
body {
  background-color: #2a3e35;
  text-align: center;
  background-image: url(img/background.jpg);
  margin-top: 15px;
  color: white;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #2a3e35;
}

h1 {
  font-family: "IM Fell French Canon", serif;
  color: white;
}

h2 {
  font-family: "IM Fell French Canon", serif;
  color: #4e6f47;
}

h3 {
  font-weight: bold;
}

.name {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  text-align: start;
  font-weight: bold;
}

.container-fluid.carousel-center {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.nav-link {
  color: white;
  font-size: 0.8em;
  text-transform: uppercase;
  font-weight: 300;
  font-family: "Trebuchet", sans-serif;
}

.nav-link:hover {
  color: green;
}

.active {
  color: green;
}

.content {
  background-color: #f2fadb;
  width: 100%;
  padding: 15px;
}

.content img {
  margin: 25px 5px 5px 5px;
  width: 80%;
  padding: 5px;
}

main {
  background-color: #fafdf2;
  width: 100%;
  color: #2a3e35;
}

.heading {
  color: #b64500;
  font-size: 3.5em;
  padding: 15px;
  width: 80%;
  margin: auto;
  position: relative;
  border-bottom: 1px solid black;
  margin-bottom: 25px;
  max-height: 200px;
}

.emblem {
  position: absolute;
  background-color: #fafdf2;
  margin: 0px 15px;
  width: 25px;
  height: 7px;
  bottom: -5px;
  left: 45%;
}

.info {
  width: 80%;
  margin: auto;
}

.bold {
  padding: 0;
  margin: 0;
  font-weight: bold;
}

.italics {
  padding: 0;
  margin: 0;
  font-style: italic;
}

li {
  text-align: left;
}

ul {
  margin-bottom: 0px;
  padding-bottom: 16px;
}

p {
  text-align: left;
  color: #4e6f47;
  margin: 10px 0px 0px 0px;
  padding: 10px 20px;
}

.btn-stonegate {
  background-color: #2a3e35;
  color: #fafdf2;
  font-family: "IM Fell French Canon", serif;
}

#carouselSizing .carousel-item img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  overflow: hidden;
  height: 50vh;
}

.carousel {
  width: 50%;
}

.carousel-caption {
  background-color: rgba(0, 0, 0, 0.5);
  min-height: 20px;
  margin-bottom: .75em;
  padding: 5px;
}

.carousel-control-next,
.carousel-control-prev, .carousel-indicators {
  -webkit-filter: invert(100%);
          filter: invert(100%);
}

.media {
  display: -ms-grid;
  display: grid;
  text-align: center;
  margin-bottom: 25px;
  justify-items: center;
  grid-gap: 10px;
  background-color: #f2fadb;
      grid-template-areas: "image heading heading" "image col1 butt";
}

.media img {
  -webkit-box-shadow: 5px 5px 10px grey, -5px -5px 10px grey;
          box-shadow: 5px 5px 10px grey, -5px -5px 10px grey;
  margin-bottom: 5px;
}

.frame {
  border: 10px solid white;
  border-radius: 5px;
}

.header {
  font-size: 2.8em;
  color: #4e6f47;
  text-align: start;
}

form {
  text-align: start;
}

label {
  text-align: left;
  color: #4e6f47;
  border-radius: 5px;
}

.submit-input {
  background-color: #4e6f47;
  border: 0px 0px 0px 0px;
  border-radius: 8px;
  font-family: "IM Fell French Canon", serif;
  color: #f2fadb;
  font-size: 1em;
  width: 70px;
}

.text-input {
  width: 100%;
}

.message-input {
  width: 100%;
  height: 100px;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: auto;
}

.column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

footer {
  padding: 25px;
  background-color: #bac39b;
}

.container::after {
  content: "stonegate ";
}

.mediaimg {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  grid-area: image;
  margin: 25px;
}

.media-title {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-area: heading;
}

.mediap {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: col1;
}

.mediab {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
  grid-area: butt;
}

i {
  margin-right: 15px;
}

@media screen and (max-width: 768px) {
  .media {
    grid-template: "image" "heading" "col1" "butt";
  }
  .heading {
    font-size: 2.5em;
  }
  #carouselSizing .carousel-item img {
    height: 25vh;
  }
}

@media screen and (max-width: 1200px) {
  .row {
    display: block;
  }
  .column {
    display: block;
    width: 100%;
  }
}
/*# sourceMappingURL=styles.css.map */