html {
  color: #fff;
  background: #23242B;
  font-size: 1em;
  line-height: 1.4;
}

* {
  box-sizing: border-box;
}

::-moz-selection {
  color: #23242B;
  background: #BAB1F6;
  text-shadow: none;
}

::selection {
  color: #23242B;
  background: #BAB1F6;
  text-shadow: none;
}
body {
  margin: 0;
  padding: 0;
}

.page-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-content: center;
  gap: 2rem;
  width: 100%;
  padding: 0 2rem;
}
.section {
  flex: 1 1 auto;
  width: 100%;
  max-width: 1280px;
  padding: 2rem 0;
  @media (max-width: 480px) {
    padding: 1rem 0;

  }
  &.intro {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    @media (max-width: 480px) {
      height: auto;
    }
    .image {
      flex: 1 1 auto;
      width: 100%;
      height: auto;
      max-width: 80vw;
      padding: 8rem 0;
      max-height: 60vmin;
      @media (max-width: 800px) {
        max-height: 100vmax;
      }
      @media (max-width: 480px) {
        max-height: 100vmax;
        padding: 16vh 0 4vh 0;
      }
    }
  }
  &.image-text {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
    @media (max-width: 800px) {
      flex-direction: column;
    }
    .image {
      padding:0 2rem;
      flex: 1 1 auto;
      max-width: 44%;
      @media (max-width: 800px) {
        max-width: 100%;
        order: 2;
      }
    }
    .text {
      padding:0 2rem;
      flex: 1 1 auto;
      font-family: "Rubik", sans-serif;
      font-weight: 800;
      font-size: 2.6rem;
      @media (max-width: 300px) {
        font-size: 1.6rem;
      }
      text-transform: uppercase;
      & strong {
        color: #BAB1F6;
        font-weight: 800;
      }
    }
  }
  &.comparison {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Rubik", sans-serif;
    font-weight: 800;
    font-size: 2.6rem;
    @media (max-width: 300px) {
      font-size: 1.6rem;
    }
    text-transform: uppercase;
    width: 100%;
    gap: 3rem;
    padding: 12rem 0;
    @media (max-width: 800px) {
      padding: 1rem;
      flex-direction: column;
      justify-content: center;
    }
    .box {
      flex: 1 1 auto;
      font-size: 2rem;
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      padding: 5rem 2rem 1rem;
      gap: 0.5rem;
      color: #23242B;
      border-radius: 2rem;
      @media (max-width: 800px) {
        width: 100%;
        font-size: 1.6rem;
      }
      @media (max-width: 300px) {
        font-size: 1rem;
      }

      &.green {
        background:  #15E481;
      }
      &.red {
        background:  #EA2D57;
      }
      .image {
        flex: 1 1 auto;
        width: 100%;
        max-width: 50%;
      }

    }
  }
  &.shop {
    width: 100%;
    display: flex;
    background: #AF51B7;
    align-items: center;
    font-family: "Rubik", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 2rem;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 4rem;
    padding: 3rem 1rem;
    @media (max-width: 480px) {
      margin: 2rem 0.5rem;
    }

    h2 {
      font-size: 4rem;
      text-align: center;
      color: #EEC651;
      font-weight: 900;
      margin: 0;
      @media (max-width: 480px) {
      font-size: 2.3rem;
    }
      @media (max-width: 300px) {
        font-size: 1.6rem;
      }
      }
      .image {
        flex: 1 1 auto;
        width: 100%;
        padding: 0;
          &.desktop-image {
            display: block;
            @media (max-width: 640px) {
              display: none;
            }
          }
          &.mobile-image {
            display: none;
            @media (max-width: 640px) {
              display: block;
            }
          }
      }
    .button {
      margin: 2rem;
      font-family: "Rubik", sans-serif;
      cursor: pointer;
      font-weight: 800;
      padding: 1rem 2rem;
      border-radius: 1rem;
      border: none;
      background: #61D6C0;
      text-transform: uppercase;
      font-size: 2rem;
      text-align: center;
      color: #23242B;
      text-decoration: none;
      @media (max-width: 300px) {
        font-size: 1rem;
      }
      &:hover {
        transform: scale(1.1);
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        background: #EEC651;
      }
    }

    }
  &.instagram-feed {
    padding: 10rem 1rem 3rem 1rem;
  }
}

.footer-wrapper {
  padding-top: 8rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  overflow: hidden;
  .footer {
    text-align: center;
    padding: 2.2rem;
    width: 100%;
    background: #191A1F;
    color: #EA2D57;
    font-family: "Rubik", sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    border: none;
    text-transform: uppercase;
    @media (max-width: 480px) {
font-size: 1rem;
    }

  }
  .image {
    width: 200px;
    margin: 0 0 -40px 0;
    z-index: 2;
  }
}

.not-found {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-direction: column;
  font-family: "Rubik", sans-serif;
  font-weight: 800;
  padding: 1rem 2rem;
  text-transform: uppercase;
  text-align: center;
  height: 100vh;
  h1 {
    color: #61D6C0;
    font-size: 12rem;
    margin: 0;
    padding: 0;

  }
  h2{
    color: #BAB1F6;
    font-size: 2rem;
    margin: 0;
    padding: 0;

  }
}

.shop-wrapper {
  background: #61D6C0 ;
  width: 100%;
  height: 100%;
}


#myShop {
  font-family: "Rubik", sans-serif;
  background-color: #BAB1F6;
}

.sprd-designer__header {
  font-family: "Rubik", sans-serif;
  color: #23242B !important;
  background-color: #61D6C0 !important;
}

.sprd-footer {
  font-family: "Rubik", sans-serif;
  > * {
    color: #EEC651 !important;
    background-color: #AF51B7 !important;
  }
}

