body {
  margin: 0;
  font-family: "Noto Sans", sans-serif;
}

h1, h2, h3 {
  font-family: "Questrial", sans-serif;
}

ul li {
  display: inline;
}

section {
  padding: 2.5vw;
}
section .recentPage {
  padding-bottom: 50px;
}
section .recentPage h2 {
  color: #a50909;
}
section .recentPage .recentHeadline {
  display: flex;
  flex-direction: row;
}
section .recentPage .recentHeadline a {
  color: #a50909;
  line-height: 65px;
  margin: 0 4px 0 4px;
}
section .aboutPage {
  padding-bottom: 50px;
  margin: 0 15px 0 15px;
}
section .aboutPage h2 {
  color: #a50909;
}
section .aboutPage img {
  height: 25%;
  width: 25%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

section#contact {
  margin: 20px;
}
section#contact h2 {
  color: #a50909;
  text-align: center;
}
section#contact img {
  width: 150px;
  height: 150px;
  border-radius: 100px;
  border: 5px solid #FFF;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
section#contact .contactContent {
  display: flex;
  flex-direction: row;
}
section#contact .contactContent div.messaging {
  width: 60%;
}
section#contact .contactContent div.messaging input, section#contact .contactContent div.messaging textarea {
  padding: 9px;
  border: solid 1px #C9C9C9;
  outline: 0;
  width: 90%;
  background: #FFFFFF;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
section#contact .contactContent div.messaging input:hover, section#contact .contactContent div.messaging textarea:hover,
section#contact .contactContent div.messaging input:focus, section#contact .contactContent div.messaging textarea:focus {
  border-color: #a50909;
}
section#contact .contactContent div.messaging label {
  margin-left: 0px;
  color: #a50909;
}
section#contact .contactContent div.messaging button, section#contact .contactContent div.messaging input[type=submit] {
  width: auto;
  padding: 9px 15px;
  background: #a50909;
  border: 0;
  font-size: 14px;
  color: #FFFFFF;
}
section#contact .contactContent div.alternateContact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 35%;
}
section#contact .contactContent div.alternateContact a {
  line-height: 200%;
  color: #a50909;
}

textarea {
  width: 90%;
  height: 150px;
  line-height: 150%;
}

.hero {
  height: 100vh;
  background: linear-gradient(120deg, #a50909, #a50909, #f9e502, #13abed);
  background-size: 600% 600%;
  animation: heroAnimation 30s linear infinite;
}

@keyframes heroAnimation {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}
.frontPage {
  padding: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.frontPage h1 {
  font-family: "Questrial", sans-serif;
  font-size: 8vw;
  letter-spacing: 0.1em;
  color: #FFF;
  text-shadow: #aaa 1px 0 3px;
  text-transform: uppercase;
  margin: 0;
  padding: 50px 0 25px 0;
}
.frontPage img {
  width: 150px;
  height: 150px;
  border-radius: 100px;
  border: 5px solid #FFF;
}
.frontPage h2 {
  font-size: 2.5vw;
  font-family: "Questrial", sans-serif;
  text-transform: uppercase;
  color: #FFF;
}

.hover {
  opacity: 0;
}

.hide {
  display: none;
}

hr.hrStyling {
  border: 0;
  height: 2px;
  width: 100%;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

.recentPage {
  display: flex;
  flex-direction: column;
}
.recentPage .recentImage {
  width: 250px;
  height: 250px;
  border-radius: 125px;
  border: 5px solid #AAA;
}
.recentPage .recentImage h2, .recentPage .recentImage a {
  display: inline;
}
.recentPage .left {
  align-self: flex-start;
  display: flex;
}
.recentPage .left h2, .recentPage .left a {
  text-align: left;
}
.recentPage .right {
  align-self: flex-end;
  display: flex;
}
.recentPage .right h2, .recentPage .right a {
  text-align: right;
}

.ContentLeft {
  margin-right: 3%;
}

.ContentRight {
  margin-left: 3%;
}

.navbar {
  overflow: hidden;
  position: fixed;
  display: flex;
  justify-content: center;
  bottom: 0;
  width: 100%;
}
.navbar a {
  border: 2px solid transparent;
  font-family: "Noto Sans", sans-serif;
  float: left;
  display: block;
  color: #fff;
  text-shadow: #aaa 1px 0 1px;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 2vw;
  margin: 3px;
  transition: border-color 0.2s ease-in-out;
}
.navbar a:hover {
  border: 2px solid #fff;
}
.navbar a.active {
  text-decoration: underline;
}

.contentActiveNavbar {
  background-color: #FFF;
  border-top: 1px solid #AAA;
  overflow: hidden;
  position: fixed;
  display: flex;
  justify-content: center;
  bottom: 0;
  width: 100%;
}
.contentActiveNavbar a {
  border: 2px solid transparent;
  font-family: "Noto Sans", sans-serif;
  float: left;
  display: block;
  color: #000;
  text-shadow: #aaa 1px 0 1px;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 2vw;
  margin: 3px;
  transition: border-color 0.2s ease-in-out;
}
.contentActiveNavbar a:hover {
  border: 2px solid #000;
}
.contentActiveNavbar a.active {
  text-decoration: underline;
}

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