:root {
  --orange: #ed6746;
  --pink: #e89588;
  --violet: #e19bc9;
  --dirty: #e4e2dd;
  --nude: #ebae85;
}

.coverpage {
  header {
    flex-direction: column;
    margin: 0;

    h1 {
      padding-top: 5px;
      font-size: 35px;
      text-shadow: 0 0 50px black;
    }

    nav ul {
      position: static;
      gap: 30px;
    }

    nav ul li a:hover {
      color: var(--orange);
    }

    .line {
      top: 80px;
      width: 100%;
    }
  }

  main {
    text-align: center;
    font-size: 35px;
    text-shadow: 0 0 40px black;
  }
}

@keyframes expand {
  0% {
    width: 0;
  }
  50% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.getstarted {
  min-height: 100dvh;
  header {
    font-size: 35px;
  }

  .blocks {
    flex-direction: column;
    gap: 50px;
  }

  .instructions {
    margin-bottom: 20px;
  }
}

.contents {
  .container {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 30px;
    .block {
      width: 70%;
      margin: 0 auto;
    }

    .block:hover {
      transform: none;
      border-top-color: var(--dirty);
    }
  }
}

.intro {
  margin-bottom: 30px;

  h2 {
    font-size: 48px;
  }

  p {
    text-align: justify;
    margin: 0 auto;
  }
}

.page1 {
  h2 {
    font-size: 3rem;
  }
  .container {
    gap: 32px;
    flex-direction: column;
    margin-bottom: 30px;

    .block {
      width: 90%;
      height: auto;
      margin: 0 auto;
    }
  }
}

.page2 {
  position: relative;
  min-height: 200dvh;
  h2 {
    font-size: 2rem;
    padding: 20px 0 0;
  }

  .container {
    position: relative;

    min-height: 250dvh;
    .vert {
      display: none;
    }

    .right {
      padding-top: 300px;
    }

    .left {
      padding-top: 20px;
    }
    .left,
    .right {
      position: absolute;
      width: 100%;

      .block {
        flex-direction: column;
        width: 90%;
        min-height: 250px;

        margin: 0 auto;

        .vertl {
          display: none;
        }
      }
    }
  }
}

.analysis {
  p {
    font-size: 1rem;
    max-width: 80%;
    margin-bottom: 20px;
  }
}

footer {
  display: block;

  .about {
    display: block;
    width: 100%;

    h2 {
      text-align: center;
      padding-left: 0;
    }
  }

  .vert {
    display: none;
  }

  p {
    width: 90%;
    margin: 0 10px;
  }

  .contact {
    display: block;
    margin: 0 auto;

    h2 {
      display: none;
    }

    .icons {
      padding: 50px 0;
    }
  }
}
