body {
  padding: 0 25px 0 25px;
  background-color: rgb(245, 244, 233);
  color: rgb(11, 19, 136);
  font-size: 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.page {
  display: flex;
  flex-direction: column;
  min-width: 800px;
  max-width: 1250px;
  margin: auto;
}

.mainHeader {
  display: flex;
  flex-direction: row;
  height: 100px;
  min-width: 800px;
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
  top: 0;
  position: fixed;
  background-color: rgb(245, 244, 233);
}

.logo {
  width: 50px;
  height: 50px;
  background-image: url("../images/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}

#navContainer {
  display: flex;
  width: -webkit-calc(100% - 150px);
  width: -moz-calc(100% - 150px);
  width: calc(100% - 150px);
  height: 100%;
  margin-left: 10px;
  flex-direction: column;
}

#mainBanner {
  width: 100%;
  height: 100px;
  font-size: 50px;
  letter-spacing: 5px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: rgb(218, 129, 113);
  padding-left: 100px;
}

#nav {
  align-self: flex-end;
  width: 100%;
  display: flex;
  flex-direction: row;
}

#hamberger {
  display: none;
}

#hamberger_icon {
  height: 50px;
}

.navItem {
  margin: 0 3px 0 3px;
  padding: 0 15px 0 15px;
  border: 0px solid rgb(11, 19, 136);
  border-bottom: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  cursor: pointer;
  border-bottom: #7f7f7f solid 1px;
  font-size: 20px;
}

.activeNav {
  border: 0px solid rgb(31, 44, 212);
  border-bottom: 0;
  background-color: lightblue;
}

.contentContainer {
  display: flex;
  flex-direction: row;
}

.socialLinks {
  width: 0px;
  padding: 10px 25px 0 25px;
  background-color: rgb(245, 244, 233);
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  position: fixed;
  height: 100%;
}

.pageContentContainer {
  padding: 20px;
  margin-top: 100px;
  margin-left: 50px;
  width: 100%;
}

.backButton {
  background-color: rgb(124, 127, 165);
  color: rgb(245, 244, 233);
  font-size: 15px;
  display: inline-block;
  border: 1px solid #ccc;
  box-shadow: 0 0 5px -1px rgba(0, 0, 0, 0.2);
  margin: 7px 7px 7px 0;
  padding: 5px;
}

#pageContent {
  margin-top: 2px;
  min-height: 800px;
  width: 100%;
}

.socialIconImage {
  width: 30px;
  margin: 10px 0 10px 0;
}

.imageThumbnail {
  width: 150px;
  padding: 10px;
  transition: transform 0.1s ease-in;
  &:hover {
    transform: scale(1.15);
  }
}

.categoryHeader {
  margin-top: 20px;
}

.pictureIndex {
  font-size: 15px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.backToTop {
  position: fixed;
  right: 10px;
  bottom: 40px;
  cursor: pointer;
  background-color: rgb(124, 127, 165);
  color: rgb(245, 244, 233);
  padding: 2px 5px;
}

.pictureIndexItem {
  background-color: rgb(124, 127, 165);
  color: rgb(245, 244, 233);
  padding: 2px 5px;
  cursor: pointer;
  margin: 2px 5px 2px 5px;
}

.imageAndDescription {
  max-height: 80%;
}

.clickable {
  cursor: pointer;
}

ul {
  margin: 0 0 0 0;
}

@media (max-width: 850px) {
  .page {
    min-width: 400px;
  }

  .mainHeader {
    height: 50px;
  }

  #mainBanner {
    display: none;
  }

  #nav {
    position: absolute;
    top: 0;
    left: 50px;
    flex-direction: column;
    background-color: white;
    width: 50%;
    display: none;
  }

  #hamberger {
    display: flex;
    width: 100%;
  }

  .mobilePageTitleContainer {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  #mobilePageTitle {
    position: absolute;
    text-align: center;
    bottom: 15px;
  }

  .logo {
    display: none;
  }
  .mainHeader {
    height: 50px;
    min-width: 400px;
  }
  .pageContentContainer {
    padding-top: 0;
    margin-top: 50px;
    min-width: 400px;
  }
  .socialLinks {
    margin-top: 50px;
  }
  .navItem {
    padding: 5px 0 5px 0;
    font-size: 20px;
  }

  li {
    margin: 10px 0 10px 0;
  }
}
