/*-- -------------------------- -->
<---      Single Page           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #single-page {
    z-index: -1;
    /* 60px - 120px - leaving extra space for the navigation */
    padding: clamp(0.75rem, 1vw, 1rem) 1.5rem;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    position: relative;
  }
  #single-page .cs-container {
    width: 100%;
    margin: 2rem auto;
  }
  #single-page .cs-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--divGap);
    text-align: left;
    /* changed to at tablet */
    width: 100%;
    /* 100px - 150px, changes to 0 at tablet */
    /* margin-top: clamp(6.25rem, 28vw, 9.375rem); */
  }

  #single-page .cs-title span {
    display: inline-block;
    /* Ensure span is treated as a block-level element */
  }
  #single-page .cs-title span:hover {
    transform: scale(1.1) rotate(4deg);
    /* Apply scaling and rotation */
    transition: transform 0.3s ease;
    /* Smooth transition for the effect */
  }
  #single-page p {
    color: var(--dDark);
    width: 100%;
    /*max-width: 36rem;*/
    margin: auto 0 0 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 400;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #single-page .cs-container {
    align-items: flex-end;
  }
  #single-page .cs-content {
    width: 100%;
    /* flex-direction: row; */
    margin-top: 0rem;
  }
  #single-page .cs-content#page-not-found {
    margin-top: clamp(3rem, 10.8vw, 20.5rem);
  }

}
