@font-face {
  font-family: Tinos;
}

html,
body {
  margin: 0px;
  height: 100%;
  width: 100%;
}

body {
  display: flex;
  flex-direction: column;
  background-color: lemonchiffon;
  background-image: url(/content/img/bara_0200.jpg);
  align-items: center;
  justify-content: space-around;
  flex: 1;
}

.container {
  display: flex;
}

.splash-image {
  background-image: url(seal.png);
  width: 500px;
  height: 500px;
  /*
  box-shadow: inset 0 0 100px 40px #000000;
  */
}

.menu-options {
  display: flex;
  justify-content: space-evenly;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;

  width: 500px;
}

.menu-option {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 16vh;
  text-decoration: none;
  font-size: 165vh;
  color: black;
  font-weight: bold;
}

/* footer*/
.bottom-bar {
  display: flex;

  flex-wrap: column nowrap;
  background-color: peachpuff;
  width: 100%;
}

.links {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: row nowrap;
  flex-grow: 1;
}

.link {
  padding: 2vh;
  font-size: 3.5vh;
}

/*tag-list*/
.blog-container {
  padding: 5vh;
}

/* blog page*/
.postbody {
  flex: 1;
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 90ch;
}

/* about page*/
.about-paragraph {
  font-size: 2vh;
}

.comment-section {
  background-color: lemonchiffon;
  padding: 5vh;
}

/* mobile*/
@media screen and (max-width: 768px) {
  .content-container {
    display: flex;
    flex-wrap: wrap;

    text-align: center;
    background-color: peachpuff;
  }

  .blog-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    max-width: 45ch;
  }

  .postbody {
    display: flex;
    flex-wrap: no-wrap;
    flex-direction: column;
    align-content: space-around;
    flex-basis: auto;

  }
}

img {
  max-width: 100%;
  height: auto;
}
