html {
  background: #cca686;
  background: -moz-linear-gradient(0deg, #cca686 0%, #90d7be 47%, #00a1c2 100%);
  background: -webkit-linear-gradient(0deg, #cca686 0%, #90d7be 47%, #00a1c2 100%);
  background: linear-gradient(0deg, #cca686 0%, #90d7be 47%, #00a1c2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#cca686",endColorstr="#00a1c2",GradientType=1);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

html,
body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  font-family: Courgette;
  color: white;
}

body {
  /* background-color: lightblue; */
  /* background-size: 100% 100%; */
  font-size: 14px;
  background: #cca686;
  background: -moz-linear-gradient(0deg, #cca686 0%, #90d7be 47%, #00a1c2 100%);
  background: -webkit-linear-gradient(0deg, #cca686 0%, #90d7be 47%, #00a1c2 100%);
  background: linear-gradient(0deg, #cca686 0%, #90d7be 47%, #00a1c2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#cca686",endColorstr="#00a1c2",GradientType=1);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

a {
  color: white;
  text-decoration: none;
}

p {
  margin: 0px;
}

#languageSelection {
  position: fixed;
  top: 3px;
  right: 8px;
  font-size: 20px;
  z-index: 1000;
  text-align: right;
  height: 23px;
  overflow-y: hidden;
  overflow-x: visible;
}

#languageSelection.open {
  height: 200px;
}

#mainContainer {
  width: 100%;
  height: 100%;
  display: flex;
}

#mainMenu {
  width: 100%;
  font-size: 30px;
  text-align: center;
  position: relative;
}
#mainMenu .links {
  width: 100%;
  display: flex;
  margin-bottom: 40px;
}
#mainMenu .links div {
  flex-grow: 1;
}

#mainMenuPlaceholder {
  display: none;
}

#logoPlace {
  width: 100%;
  margin: 20px 0px;
  height: 50px;
}
#logoPlace img {
  height: 50px;
}

#mobilePlacement #menuImage {
  margin-bottom: 20px;
  font-size: 0px;
}
#mobilePlacement #menuImage img {
  max-height: 30vh;
}
#mobilePlacement #contactInfo {
  font-size: 20px;
  margin-bottom: 20px;
}
#mobilePlacement #contactInfo p:first-of-type {
  font-size: 30px;
}
#mobilePlacement .introText {
  margin-bottom: 20px;
  font-size: 20px;
}

#pageContainer {
  width: 100%;
}

.onePageContainer {
  display: flex;
  margin-bottom: 20px;
}
.onePageContainer .textContent {
  font-family: "Open Sans", Arial, Arial, Helvetica, sans-serif;
  font-size: 16px;
  padding: 0px 20px;
}
.onePageContainer .textContent .pageTitle {
  font-size: 50px;
  display: block;
  text-align: center;
  font-family: Courgette;
}
.onePageContainer .textContent .bioContainer {
  display: flex;
}
.onePageContainer .textContent .bioDate {
  flex-basis: 75px;
  flex-shrink: 0;
}
.onePageContainer .textContent .bioText {
  flex-grow: 1;
}
.onePageContainer .textContent a {
  text-decoration: underline;
}
.onePageContainer .image {
  font-size: 0px;
  margin-bottom: 20px;
}
.onePageContainer .image img {
  height: 50vh;
  width: auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.onePageContainer .image img.smaller {
  height: 40vh;
}

.onePageContainer.imagefirst {
  flex-direction: column;
}

.onePageContainer.textfirst {
  flex-direction: column-reverse;
}

.onePageContainer.intro {
  display: none;
}

@media only screen and (min-width: 800px) {
  #logoPlace {
    height: 100px;
  }
  #logoPlace img {
    height: 100px;
  }

  #mainMenu {
    width: 25%;
    position: fixed;
    min-height: unset;
    height: 100%;
  }
  #mainMenu .links {
    flex-direction: column;
    font-size: 40px;
  }
  #mainMenu #mobilePlacement {
    display: none;
  }

  #mainContainer {
    display: flex;
  }
  #mainContainer #mainMenuPlaceholder {
    display: block;
    flex-basis: 25%;
  }
  #mainContainer #pageContainer {
    flex-basis: 66%;
    flex-grow: 2;
  }

  .onePageContainer {
    min-height: unset;
  }
  .onePageContainer .textContent {
    padding-left: 0px;
  }

  .onePageContainer.intro {
    display: block;
    min-height: 100%;
  }
  .onePageContainer.intro .leftContent {
    font-size: 0px;
  }
  .onePageContainer.intro img {
    max-height: 50vh;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 20px 0px;
  }
  .onePageContainer.intro .textContent {
    font-size: 20px;
    font-family: Courgette !important;
  }
  .onePageContainer.intro .textContent p:first-of-type {
    font-size: 30px;
  }
}
@media only screen and (min-width: 1050px) {
  #menuContainer {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }

  .onePageContainer {
    min-height: 100%;
    display: flex;
  }
  .onePageContainer .image {
    margin-bottom: 0px;
  }
  .onePageContainer .leftContent,
.onePageContainer .rightContent {
    flex-basis: 45%;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .onePageContainer .leftContent .imgCont,
.onePageContainer .rightContent .imgCont {
    width: 100%;
    height: 100vh;
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .onePageContainer .leftContent img,
.onePageContainer .rightContent img {
    width: 80%;
    height: auto;
  }
  .onePageContainer .leftContent img.smaller,
.onePageContainer .rightContent img.smaller {
    width: 60%;
    height: auto;
  }
  .onePageContainer .leftContent .textContent,
.onePageContainer .rightContent .textContent {
    width: 100%;
    height: auto;
    padding: 20px;
    box-sizing: border-box;
  }

  .onePageContainer.intro {
    display: flex;
  }
  .onePageContainer.intro img {
    max-height: unset;
  }
  .onePageContainer.intro .textContent {
    font-size: 30px;
    font-family: Courgette !important;
  }
  .onePageContainer.intro .textContent p:first-of-type {
    font-size: 40px;
  }

  .onePageContainer.textfirst,
.onePageContainer.imagefirst,
.onePageContainer.intro {
    flex-direction: row;
  }

  .onePageContainer:last-of-type {
    margin-bottom: 0px;
  }
}

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