article {
    align-items: center;
    animation: fade-in 1s ease-in forwards;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    opacity: 0;
    width: 100%;
}
body {
    background-color: #ffffff;
    height: 100dvh;
    margin: 0;
    width: 100dvw;
}
html {
    line-height: 1;
    -webkit-text-size-adjust: 100%;
}
p {
    margin: 0;
}
[hidden] {
    display: none;
}
@keyframes fade-in {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  } 
}
@media (orientation: landscape) {
    p {
        font-size: 256px;
    }
}
@media (orientation: portrait) {
    p {
        font-size: 128px;
    }
}