@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap');

/* main */
body {
  background-color: #fd5c10;
  font-family: 'Staatliches', cursive;
  font-size: 16px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #fff;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  /* height: 100vh; */
  width: 100%;
  min-height: 100vh;
}

/* left */
aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 100vh;
  width: 45%;
  padding-left: 2rem;
}

.mainTitle {
  font-size: 15rem;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}

.mainTitle span {
  font-size: 8rem;
}

.subTitle {
  font-size: 5rem;
  line-height: 1.2;
  color: #fff;
  margin-top: 0;
}

/* right */
.logo {
  width: 50%;
  height: auto;
}

/* button */
button {
  --c: #229091; /* the color*/

  box-shadow: 0 0 0 0.1em inset var(--c);
  --_g: linear-gradient(var(--c) 0 0) no-repeat;
  background: var(--_g) calc(var(--_p, 0%) - 100%) 0%,
    var(--_g) calc(200% - var(--_p, 0%)) 0%,
    var(--_g) calc(var(--_p, 0%) - 100%) 100%,
    var(--_g) calc(200% - var(--_p, 0%)) 100%;
  background-size: 50.5% calc(var(--_p, 0%) / 2 + 0.5%);
  outline-offset: 0.1em;
  transition: background-size 0.4s, background-position 0s 0.4s;
}

button:hover {
  --_p: 100%;
  transition: background-position 0.4s, background-size 0s;
}

button:active {
  box-shadow: 0 0 9e9Q inset #0009;
  background-color: var(--c);
  color: #fff;
}

button {
  font-family: system-ui, sans-serif;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 0.1em 0.6em;
  font-weight: bold;
  border: none;
  color: #fff;
}

/* quote */
#quote {
  font-size: 2rem;
  color: #fff;
  margin: 0;
  margin-top: 1rem;
  width: 80%;
}

/* documentation */
.doc {
  font-family: 'roboto', sans-serif;
}

.doc h3 {
  font-size: 3rem;
  margin: 0;
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-family: 'Staatliches', cursive;
  text-align: center;
}

.doc {
  width: 60%;
  margin: 0 auto;
}

.doc p {
  font-size: 1.5rem;
  margin: 0;
  margin-top: 1rem;
  text-align: left;
  font-family: 'Staatliches', cursive;
}

.doc li {
  font-size: 1.2rem;
  margin: 0;
  margin-top: 0.4rem;
}

@media screen and (max-width: 500px) {
  .container {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }
}
