#section-00 {
  background-color: var(--amber-100);

  a {
    text-decoration: none;
  }
}

#section-02 {
  text-align: justify;

  > article {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;

    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 30px !important;

    > h1 {
      font-size: 1.5rem !important;
    }

    > div:nth-child(1) {
      flex: 0 1 300px;

      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: flex-start;
      align-content: flex-start;

      #photo {
        width: 100%;
        min-width: 300px;
        max-width: 300px;
        background-image: url("/photos/moi/moi-01_800x800.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        aspect-ratio: 1;
      }
    }

    > div:nth-child(2) {
      flex: 1 1 300px;
      flex-direction: column;

      align-items: center;
      justify-content: center;
      align-content: flex-start;

      > h2 {
        font-size: 1.2rem;
      }
    }
  }
}

#section-04 {
  text-align: justify;

  > article {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 30px !important;

    > div {
      flex: 1 1 200px;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      align-content: flex-start;

      > h2 {
        font-size: 1.2rem;
      }
    }
  }
}

#section-05 {
  text-align: justify;

  > article {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;

    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 30px !important;

    > div:nth-child(1) {
      flex: 0 1 300px;

      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: flex-start;
      align-content: flex-start;

      > video {
        width: 100%;
        min-width: 300px;
        max-width: 300px;
        aspect-ratio: 4/5;
      }
    }

    > div:nth-child(2) {
      flex: 1 1 300px;
      flex-direction: column;

      align-items: center;
      justify-content: center;
      align-content: flex-start;

      > h2 {
        font-size: 1.2rem;
      }
    }
  }
}

#section-06 {
  text-align: justify;

  > article {
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;

    > iframe {
      max-width: 100%;
      aspect-ratio: 16/9;
      background-color: black;
    }
  }
}

@media screen and (max-width: 480px) {
    .text-columns {
      column-count: 1;
      column-gap: 30px;
    }  
}

@media screen and (min-width: 481px) {
    .text-columns {
      column-count: 2;
      column-gap: 30px;
    }  
}
