main p {
text-align: center;
}

/* Start Page */
  header-template #spacer {
    background-color: var(--primary-color-light);
  }

  #start-page {
    display: flex;
    flex-direction: column;
    background-color: var(--primary-color-light);
    height: calc(100vh - var(--header-offset));
  }

  #start-page #start-side {
    display: flex;
    flex: 1;
  }

  /* Title */
    #start-page #title {
    display: flex;
    flex-direction: row;
    column-gap: 50px;
    align-items: center;
    text-align: center;
    }

    #start-page #title-side {
      min-width: 50px;
      flex:1;
    }

    #start-page #title-text {
    font-size: 70px;
    max-width: 800px;
    color: var(--secondary-color);
    }

    #start-page #title-image {
      width: 300px;
    }

  #start-page #scroll-text {
    margin: auto;
    padding-top: 100px;
    font-size: 25px;
    font-weight: bold;
    color: var(--alternate-text-color);
    opacity: 1;
    transition: opacity linear;
  }