:root {
  color-scheme: light dark;
}

.container {
  display: flex;
  justify-content: center;
}

.post {
  max-width: 800px;
  min-width: 370px;
  font-family: "Castoro", serif;
  margin-top: 8px;
}

img {
  display: block;
  margin: auto;
}

p {
  line-height: 1.6;
}

h1, h2, h3 {
  margin: 0;
}

h1 {
  font-size: 42px;
}

h2 {
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: #717680;
  margin-top: -7px;
}

h3 {
  color: #717680;
}

#left, #right {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  font-size: 24px;
  cursor: pointer;
  user-select: none;
  top: 50%;
  margin: 0 10px;
  color: #717680;
  height: 50px;
  width: 50px;
  font-size: 30px;
  transition: 100ms;
  border-radius: 50%;
}

#left { left: 0; }

#right { right: 0; }

#left:focus, #right:focus { outline: revert; }

#left:hover, #right:hover {
  background-color: #e6e6e6b7;
  color: black;
  border: solid 2px #000000;
}

#left:hover {
  transform: translateX(7px) scale(1.1);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.363);
}

#right:hover {
  transform: translateX(-7px) scale(1.1);
  box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.363);
}

@media screen and (max-width: 400px) {
  .container {
    display: block;
  }

  .post {
    min-width: 0px;
  }
}

.castoro-regular {
  font-family: "Castoro", serif;
  font-weight: 400;
  font-style: normal;
}

.castoro-regular-italic {
  font-family: "Castoro", serif;
  font-weight: 400;
  font-style: italic;
}