body,
html {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  background-color: #9bc9ba;
  background-attachment: fixed;
}

.mv-bar.mv-ui {
  position: fixed;
  top: 1px;
  right: 10px;
  margin: auto;
  max-width: 600px;
  z-index: 20;
}

.topbar {
  font-family: "Quicksand", sans-serif;
  font-size: 3vh;
  font-weight: 500;
  height: 30px;
  width: 100%;
  z-index: 10;
  padding: 0.1% 2%;
  text-align: left;
  color: whitesmoke;
  background-color: #9bc9ba;
  box-shadow: 0 0 0 7px #9bc9ba, 0 0 0 20px whitesmoke, 0 0 0 26px #5d9985;
}

.triangle {
  font-size: 2vh;
  position: relative;
  top: -3px;
}

.wisp {
  font-size: 2vh;
  color: #4a7768;
  position: relative;
  top: -3px;
  text-decoration: none;
}

.header {
  padding-top: 150px;
  padding-bottom: 50px;
  align-self: center;
  width: 75%;
  max-width: 700px;
  height: min-content;
  text-align: right;
  overflow-wrap: break-word;
  margin-bottom: 50px;
}

.footer {
  content: "";
  text-align: center;
  flex: 1;
  width: 100%;
  min-height: 250px;
  background-image: linear-gradient(
    to bottom,
    #ff00 0% 1%,
    whitesmoke 1% 3%,
    #ff00 3% 6%,
    whitesmoke 6% 10%,
    #ff00 10% 14%,
    whitesmoke 14% 25%,
    #ff00 25% 30%,
    whitesmoke 30% 40%,
    #ff00 40% 45%,
    whitesmoke 45% 50%,
    #ff00 35% 45%,
    whitesmoke 50% 60%,
    #ff00 60% 65%,
    whitesmoke 65% 100%
  );
}

.footer > div {
  margin: auto;
  width: fit-content;
  height: fit-content;
  padding: 10px 20px 20px;
  background-color: #9bc9ba;
  border-radius: 0 0 15px 15px;
}

.header-text {
  text-align: right;
  color: #fcdb94;
  line-height: 1.2;
  text-transform: uppercase;
}

.header-text .big {
  font-size: 11vh;
}

.header-text .medium {
  font-size: 8vh;
}

.header-text .small {
  font-size: 4vh;
}

.header-text .extrasmall {
  font-size: 2vh;
}

/* blogfeed*/

.post-feed {
  border-top: #5d9985 3px solid;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.post-header {
  width: 100%;
  transition: all 0.5s ease;
}

.post-header > div {
  padding: 2% 3%;
  margin: auto;
  max-width: 800px;
  text-align: left;
}

.post-header-expanded {
  background-color: whitesmoke;
  padding-top: 10%;
  padding-bottom: 10%;
  border-bottom: #6b6b6b 4px solid;
  box-shadow: 0 0 0 5px #9bc9ba, 0 0 0 15px whitesmoke, 0 0 0 15px #9bc9ba;
  margin-top: 21px;
}

.post-header-expanded > div > h1 {
  font-size: 6vh;
}

.post-header-expanded > div > h2 {
  font-size: 3vh;
}

.post-body {
  background-color: rgb(187, 223, 211);
  padding: 0 20px;
  transition: all 0.5s ease;
}

.post-body > div {
  margin: auto;
  max-width: 800px;
  border-bottom: #6b6b6b 3px dashed;
}

.post-body-expanded > div img {
  max-width: 50%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 10px;
}

.post-body-expanded > div > p {
  height: fit-content;
  opacity: 1;
}

@media (min-width: 1200px) {
  .post-body-expanded > div > button {
    transition: all 0.5s ease;
    margin-left: -180px;
    z-index: 10;
  }
}

.post {
  width: 100vw;
  overflow: hidden;
}

.post-title {
  overflow-wrap: break-word;
  color: #030303;
  font-size: 4vh;
  line-height: 1.2;
  margin: 1px 0 10px 0px;
  transition: all 0.5s ease;
}

.post-subtitle {
  color: #1b1b1d;
  font-size: 2vh;
  transition: all 0.5s ease;
}

.post-tags {
  color: #fcdb94;
  text-shadow: -1px -1px 0 #666666, 1px -1px 0 #666666, -1px 1px 0 #666666,
    1px 1px 0 #666666;
  font-size: 2.5vh;
  transition: all 0.5s ease;
}

.post-text {
  margin-top: -10px;
  color: #1f1f1f;
  font-size: 3vh;
  line-height: 1.2;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0), -1px 1px 0px rgba(0, 0, 0, 0);
  height: 1px;
  opacity: 0;
  overflow: hidden;
  transition: all 0.7s ease;
}

h3,
h4,
h5,
h6 {
  font-family: "Quicksand", sans-serif;
}

.spoilerbutton {
  transition: all 0.5s ease;
  margin: 10px 0;
  font-size: 2.5vh;
  background-color: #fcdb94;
  border: gray 2px solid;
  box-shadow: 0 5px 0 0 rgb(85, 85, 85);
  border-radius: 5px;
  padding: 10px 20px;
}

.spoilerbutton.green {
  font-size: 3vh;
  color: whitesmoke;
  background-color: #5d9985;
  border: #5d9985 4px solid;
  box-shadow: 0 8px 0 0 #4a7768;
}

@media (max-width: 1000px) {
  .post-header-expanded {
    padding-left: 5%;
    padding-top: 15%;
    padding-bottom: 15%;
  }
}

@media (max-width: 500px) {
  .header-text .big {
    font-size: 8vh;
  }

  .header-text .medium {
    font-size: 6vh;
  }

  .post-header-expanded {
    padding: 45% 5%;
  }
}

/* fonts and shadows */

.quicksand {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.oswald {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.roboto-condensed {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.recanati-shadow {
  text-shadow: 1px 1px 0px #6b6b6b, 1px -1px 0px #6b6b6b, -1px -1px 0px #6b6b6b,
    1px 1px 0px #6b6b6b, 2px 2px 0px #6b6b6b, 3px 3px 0px #6b6b6b,
    4px 4px 0px #6b6b6b, 5px 5px 0px rgba(0, 0, 0, 0.4),
    10px 10px 0px rgba(0, 0, 0, 0.4);
}

/*
  text-shadow: -1px 1px 0px #fff, -2px 2px 0px #fff, -3px 3px 0px antiquewhite,
    -4px 4px 0px rgba(0, 0, 0, 0.6), -4px 4px 0px #fff,
    -6px 6px 0px antiquewhite, -7px 7px 0px rgba(0, 0, 0, 0.4),
    -8px 8px 0px antiquewhite, -9px 9px 0px antiquewhite,
    -10px 10px 10px rgba(0, 0, 0, 0.6);


     text-shadow: 1px 1px 0px white, 1px -1px 0px white, -1px -1px 0px white,
    -1px 1px 0px white, -2px 2px 0px white, -3px 3px 0px white,
    -4px 4px 0px antiquewhite, -5px 5px 0px rgba(0, 0, 0, 0.4),
    -10px 10px 0px rgba(0, 0, 0, 0.4);


*/
