@font-face {
  font-family: Oswald-Regular;
  src: url(/fonts/Oswald-Regular.ttf);
}
@font-face {
  font-family: Oswald-Medium;
  src: url(/fonts/Oswald-Medium.ttf);
}
@font-face {
  font-family: Oswald-Bold;
  src: url(/fonts/Oswald-Bold.ttf);
}
h1 {
  font-family: Oswald-Bold, sans-serif;
}

h2 {
  font-family: Oswald-Medium, sans-serif;
}

b,
a,
p,
li {
  font-family: Oswald-Regular, sans-serif;
}

h1,
h2,
h3,
p,
li,
a,
a:link,
a:visited {
  color: #ceb9c2;
}

html {
  height: 100%;
}

@media (min-aspect-ratio: 1/1) {
  body {
    margin: 0;
    padding: 0;
    background-image: url("..//images//WebsiteBackgroundImage_boarder.png");
    min-height: 100%;
    display: grid;
    grid-template-columns: 10% 80% 10%;
    grid-template-rows: 5em 1fr 15em;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  a,
  a:link,
  a:visited {
    text-decoration: none;
  }
  nav .NavCenter {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 2em 0;
  }
  nav .NavCenter h1 {
    font-size: 2em;
  }
  nav .NavCenter h2 {
    font-size: 1.5em;
  }
  nav .NavCenter .menu-btn,
  nav .NavCenter .menu-icon {
    display: none;
  }
  nav .NavCenter .Pages {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    gap: 2em;
  }
  .MainBody {
    grid-area: 2/2/3/3;
    background-color: #4d5836;
    padding: 0 0 3em;
  }
  .MainBody h2 {
    font-size: 2vw;
    margin-bottom: 0;
  }
  .MainBody h3 {
    margin-top: 0;
    font-size: 2vw;
  }
  .MainBody h2,
  .MainBody h3 {
    text-align: center;
  }
  .MainBody img {
    display: block;
    width: 65%;
    margin: auto;
  }
  .MainBody p {
    width: 50%;
    margin: 1em auto 1em;
    font-size: 0.85vw;
  }
  .MainBody .ulContainer {
    text-align: center;
  }
  .MainBody ul {
    display: inline-block;
    margin: auto;
    list-style: square;
    font-size: large;
    text-align: left;
  }
  .MainBody hr {
    width: 80%;
    height: 8px;
    background-color: #69706b;
  }
  .MainBody iframe {
    display: block;
    margin: auto;
  }
  .MainBody #youtubeVid {
    display: block;
    margin: auto;
    aspect-ratio: 16/9;
    width: 75%;
  }
  /* Slideshow container */
  .slideshow-container {
    max-width: 60%;
    position: relative;
    margin: auto;
    /* Hide the images by default */
    /* Next & previous buttons */
    /* Position the "next button" to the right */
    /* On hover, add a black background color with a little bit see-through */
    /* Number text (1/3 etc) */
  }
  .slideshow-container .slide {
    display: none;
  }
  .slideshow-container .slide img {
    width: 100%;
  }
  .slideshow-container .prev,
  .slideshow-container .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #c7d6ed;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .slideshow-container .prev {
    left: 0;
  }
  .slideshow-container .next {
    right: 0%;
    border-radius: 3px 0 0 3px;
  }
  .slideshow-container .prev:hover,
  .slideshow-container .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  .slideshow-container .numbertext {
    color: #ceb9c2;
    font-size: 15px;
    padding: 8px 1%;
    position: absolute;
    top: 0;
  }
  .deckDots {
    width: 50%;
    margin: auto;
    text-align: center;
  }
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  .active,
  .dot:hover {
    background-color: #69706b;
  }
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }
  footer {
    grid-area: 3/2/4/3;
  }
  footer h1 {
    text-align: center;
  }
  footer .FooterIcons {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
  }
  footer .FooterIcons img {
    max-height: 100px;
    margin: 0 1em 0;
  }
  footer address {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    margin-top: 1em;
  }
  footer address a {
    margin: 0 1em 0;
  }
  .Sidebar1 {
    grid-area: 1/1/4/2;
  }
  .Sidebar2 {
    grid-area: 1/3/4/4;
  }
}
@media (max-aspect-ratio: 1/1) {
  body {
    margin: 0;
    padding: 0;
    background-image: url("..//images//WebsiteBackgroundImage_boarder.png");
    min-height: 100%;
    display: flex;
    flex-flow: column nowrap;
  }
  h1,
  h2,
  h3,
  p,
  li {
    margin: 0;
    padding: 0;
  }
  a,
  a:link,
  a:visited {
    text-decoration: none;
  }
  .Sidebar1,
  .Sidebar2 {
    display: none;
  }
  nav .NavCenter {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
  }
  nav .NavCenter h1 {
    font-size: 3em;
    padding-left: 0.3em;
  }
  nav .NavCenter .Pages {
    display: none;
  }
  nav .NavCenter .menu-icon {
    cursor: pointer;
    padding: 2em 2em;
    position: relative;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  nav .NavCenter .menu-icon .navicon {
    background-color: #c7d6ed;
    display: block;
    height: 4px;
    position: relative;
    width: 45px;
  }
  nav .NavCenter .menu-icon .navicon::before,
  nav .NavCenter .menu-icon .navicon::after {
    background-color: #c7d6ed;
    display: block;
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
  }
  nav .NavCenter .menu-icon .navicon::before {
    top: 1em;
  }
  nav .NavCenter .menu-icon .navicon::after {
    top: -1em;
  }
  nav .NavCenter .menu-btn {
    display: none;
  }
  nav .NavCenter .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
  }
  nav .NavCenter .menu-btn:checked ~ .menu-icon .navicon::before {
    transform: rotate(-45deg);
    top: 0;
  }
  nav .NavCenter .menu-btn:checked ~ .menu-icon .navicon::after {
    transform: rotate(45deg);
    top: 0;
  }
  nav .NavCenter .menu-btn:checked ~ .Pages {
    display: block;
    background-image: url("..//images//WebsiteBackgroundImage_boarder.png");
    position: absolute;
    top: 4em;
    right: 0;
    padding-top: 1em;
    padding-right: 2em;
    padding-bottom: 1em;
    width: 100%;
    text-align: end;
  }
  .MainBody {
    background-color: #4d5836;
    display: flex;
    flex-grow: 2;
    flex-flow: column nowrap;
    align-items: center;
    padding: 1em 0 3em 0;
  }
  .MainBody h2 {
    font-size: xx-large;
  }
  .MainBody p {
    padding: 1em 0 1em 0;
    width: 70%;
    font-size: 4.25vw;
  }
  .MainBody hr {
    width: 80%;
    height: 4px;
    background-color: #69706b;
  }
  .MainBody img {
    width: 85%;
  }
  .MainBody iframe {
    width: 80%;
  }
  .MainBody #youtubeVid {
    display: block;
    margin: auto;
    aspect-ratio: 16/9;
    width: 75%;
  }
  /* Slideshow container */
  .slideshow-container {
    max-width: 85%;
    position: relative;
    margin: auto;
    /* Hide the images by default */
    /* Next & previous buttons */
    /* Position the "next button" to the right */
    /* On hover, add a black background color with a little bit see-through */
    /* Number text (1/3 etc) */
  }
  .slideshow-container .slide {
    display: none;
  }
  .slideshow-container .slide img {
    width: 100%;
  }
  .slideshow-container .prev,
  .slideshow-container .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #c7d6ed;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .slideshow-container .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  .slideshow-container .prev:hover,
  .slideshow-container .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  .slideshow-container .numbertext {
    color: #ceb9c2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  .deckDots {
    width: 50%;
    margin: auto;
    text-align: center;
  }
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  .active,
  .dot:hover {
    background-color: #69706b;
  }
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }
  footer h1 {
    text-align: center;
  }
  footer .FooterIcons {
    display: flex;
    flex-flow: row;
    justify-content: center;
  }
  footer .FooterIcons img {
    width: 75px;
    margin: 0 0.25em;
  }
  footer address {
    display: flex;
    flex-flow: column nowrap;
  }
  footer address a {
    text-align: center;
    font-size: 1.5rem;
  }
  footer address b {
    display: none;
  }
}/*# sourceMappingURL=projectPageStyle.css.map */