a {
    background-color: transparent;
    color: inherit;
    text-decoration: none;
}
a,
div > div {
    display: flex;
    flex-direction: row;
    height: auto;
    justify-content: space-between;
    width: 100%;
}
article > div {
    animation: fade-in 1s ease-in forwards;
    animation-delay: .25s;
    display: flex;
    flex-direction: column;
    height: 100dvh;
    justify-content: center;
    opacity: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    width: 100%;
}
body {
    background-image: url("./fondo.png");
    background-size: cover;
    box-sizing: border-box;
    color: #ffffff;
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-style: italic;
    font-weight: 400;
    height: 100%;
    margin: 0;
    width: 100dvw;
}
html {
    line-height: 2;
    scroll-snap-type: y mandatory;
    -webkit-text-size-adjust: 100%;
}
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    position: relative;
    top: -2rem;
    width: 100%;
}
[hidden] {
    display: none;
}

@keyframes fade-in {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  } 
}

@media (orientation: landscape) {
    body {
        font-size: 3rem;
        padding: 0 25dvw;
    }
}

@media (orientation: portrait) {
    body {
        font-size: 2rem;
        padding: 0 2rem;
    }
}