body {
  font-family: sans-serif;
  background: #000;
  padding: 0;
  margin: 0;
}
a {
  text-underline-offset: 8px;
  text-decoration: underline;
}
a:hover {
  text-decoration-color: #3333ff;
}

#para {
  font-size: 25vh;
  transition: all 1s ease-out;
  border: 0px solid red;
  font-weight: 900;
  letter-spacing: -0.3rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: normal;
  align-items: normal;
  align-content: normal;
  line-height: 0.9em;
  padding: 0;
  margin: 0;
  height: 100vh;
}
#para p {
  border: 0px dotted orange;
  padding: 0;
  margin: 0;
  display: flex;
  height: 50%;
  overflow: hidden;
  word-spacing: -1ch;
}
.class1 {
  color: #fff;
  transition: all 0.3s ease-out;
  text-align: left;
  flex: 3 1 min-content;
}
.class2 {
  color: #fff;
  transition: all 0.5s ease-out;
  text-align: right;
  flex: 0 1 min-content;
  padding-top: 1em;
}
.class3 {
  color: #fff;
  transition: all 0.3s ease-out;
  text-align: left;
  flex: 4 0 min-content;
}

.class4 {
  color: #000;
  text-align: left;
  transition: all 0.5s ease-out;
  flex: 1 0 min-content;
  background: #fff;
  padding-top: 1em;
}

span {
  color: #fff;
  transition: all 0.5s ease-out;
  text-align: left;
  border: 0px solid green;
  height: 100%;
  box-sizing: border-box;
  white-space: nowrap;
  text-align: center;
}

span:empty {
  display: none;
}

hr {
  display: flex !important;
  width: 100vw;
  flex: grow;
  display: none;
}

/* tagline */
.fade-in-out {
  animation-name: fade;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

* {
  font-family: sans-serif;
}
span {
  font-weight: bold;
}

@media (orientation: portrait) {
  #para {
    font-size: 25vw;
    transform: translateX(0vw) translateY(100vh) rotate(-90deg);
    transform-origin: left top;
    height: 100vw;
    width: 100dvh;

  }
  #para p {
    border: 0px dotted orange;
    padding: 0;
    margin: 0;
    display: flex;
    height: 50vw;
    overflow: hidden;
  }
  .class3 {
  color: #fff;
  transition: all 0.3s ease-out;
  text-align: left;
  flex: 4 0 33vh;
}
}
