* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

:root {
  --boxed: 1200px;

  --white: #fefefe;
  --magenta: #d63c5e;
  --blue: #cedae6;
  --asphalt: #494949;
}

.container {
  padding: 1rem;

  &.boxed {
    max-width: var(--boxed);
    margin: 0 auto;
  }
}

html {
  font-size: 20px;
  overflow-x: hidden;
  font-family: montserrat, sans-serif;
  color: var(--asphalt);
  background: var(--blue);

  @media (width < 768px) {
    font-size: 17px;
  }

  & section:not(section:first-of-type) {
    margin-top: 3rem;
  }

  & h3 {
    font-size: 75px;

    @media (width < 768px) {
      font-size: 40px;
    }
  }

  & h4 {
    font-size: 40px;

    @media (width < 768px) {
      font-size: 30px;
    }
  }
}

#hero {
  height: 100dvh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

  & .hero-image {
    height: 100%;
    width: 100%;
    position: absolute;
    inset: 0;
    z-index: -1;
    object-fit: cover;
  }

  & div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    position: relative;

    & h3 {
      color: var(--white);
      padding: 1rem 5rem;
      background: var(--magenta);
      width: max-content;

      @media (width < 768px) {
        padding: 1rem 3rem;
      }
    }

    & img {
      max-height: 50dvh;
      max-width: 80dvw;
    }

    & article {
      text-align: center;

      & h3 {
        color: var(--asphalt);
        background: transparent;
        width: max-content;
      }
    }

    div {
      position: absolute;
      right: 12%;
      top: 50%;
      background: var(--magenta);
      height: 200px;
      width: 200px;
      border-radius: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 1rem;
      text-align: center;
      z-index: -1;
      rotate: -10deg;

      @media (width < 768px) {
        height: 100px;
        width: 100px;
      }

      & p {
        color: var(--white);
        font-size: 35px;

        @media (width < 768px) {
          font-size: 20px;
        }
      }
    }
  }

  & #notice {
    position: absolute;
    bottom: 10px;
    right: 10px;
  }
}

#acts {
  position: relative;
  padding-bottom: 5rem;
  overflow-x: clip;

  & .container.boxed {
    position: relative;
    z-index: 10;
  }

  & .act-images {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;

    @media (width < 768px) {
      flex-direction: column;
      gap: 3rem;
    }

    & img {
      max-height: 50dvh;
      object-fit: contain;
    }
  }

  & div.flex {
    display: flex;
    justify-content: space-between;

    @media (width < 768px) {
      flex-direction: column;
    }

    & ul {
      list-style-type: none;

      & li {
        display: flex;
        gap: 1rem;
        align-items: center;
        margin: 1rem 0;
        font-size: 1.5rem;

        & img {
          height: 20px;
        }
      }
    }

    & .postsv-logo {
      max-width: 40%;
      object-fit: contain;

      @media (width < 768px) {
        max-width: 100%;
      }
    }
  }

  & svg {
    margin-top: -50%;
    z-index: -1;

    @media (width < 768px) {
      margin-top: -200%;
    }
  }
}
