main {
    position: relative;
    width: 100vw;
    overflow-x: hidden;
}


/*--------------------------------------------------------------
# runes
--------------------------------------------------------------*/

#runes1,
#runes2 {
    position: absolute;
    top: 5%;
    right: 0;
    width: 80vw;
    height: 80vw;
    max-width: 1000px;
    max-height: 1000px;
    margin: -60px 0 0 150px;
    animation: spin 30s linear infinite;
    z-index: -1;
    color: var(--text-ilight);
    opacity: 0.1;
    border-radius: 50%;
    pointer-events: none;
}

#runes2 {
    animation: reverse-spin 30s linear infinite;
}


/* Keyframes */

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes reverse-spin {
    100% {
        transform: rotate(-360deg);
    }
}


/*--------------------------------------------------------------

Section

--------------------------------------------------------------*/

section {
    padding: 20px 0;
    background-color: var(--secondary-background);
    color: var(--text-color);
    max-width: 1200px;
    margin: 20px auto;
    overflow-x: hidden !important;
    width: 100vw;
    box-sizing: content-box;
}

.container {
    padding: 0 15px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.section-title span {
    position: absolute;
    top: 15px;
    color: var(--background-secondary);
    left: 0;
    right: 0;
    z-index: 1;
    font-weight: 700;
    font-size: 52px;
    text-transform: uppercase;
    line-height: 0;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: var(--secondary);
    position: relative;
    z-index: 2;
    transition: all 0.2s ease-in-out;
}

section:hover .section-title h2 {
    font-size: 64px;
    transition: all 0.2s ease-in-out;
}

.section-title h3 {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding-bottom: 0;
    color: var(--text-ilight-secondary);
    position: relative;
    z-index: 2;
    transition: all 0.2s ease-in-out;
}

.section-title h4 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 0;
    color: var(--text-ilight-secondary);
    position: relative;
    z-index: 2;
    transition: all 0.2s ease-in-out;
}

.section-title h5 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding-bottom: 0;
    color: var(--text-ilight-secondary);
    position: relative;
    z-index: 2;
    transition: all 0.2s ease-in-out;
}

.section-title h6 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding-bottom: 0;
    color: var(--text-ilight-secondary);
    position: relative;
    z-index: 2;
    transition: all 0.2s ease-in-out;
}

.section-title p {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.section-subtitle span {
    position: absolute;
    top: 10px;
    color: var(--text-light);
    left: 0;
    right: 0;
    z-index: 1;
    font-weight: 700;
    font-size: 28px;
    text-transform: uppercase;
    line-height: 0;
}

.section-subtitle h3 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: var(--text-ilight);
    position: relative;
    z-index: 2;
}

.articles-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

article {
    width: 30%;
    background-color: var(--background-primary);
    text-align: center;
    height: 300px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

article:hover {
    background-color: var(--background-secondary);
    box-shadow: 0 0 10px rgba(50, 49, 74, 0.5);
    transition: all 0.2s ease-in-out;
}

@media screen and (max-width: 800px) {
    article {
        width: 45%;
        background-color: var(--background-primary);
        text-align: center;
        min-height: 300px;
        max-height: 500px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    }
    section {
        padding: 50px 0;
    }

}

article .article-content {
    padding: 20px 5px;
    position: relative;
    text-wrap: wrap;
    overflow: hidden;
}
@media (max-width: 1200px) {
  .section-title span {
    font-size: 44px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  section:hover .section-title h2 {
    font-size: 34px;
  }

  .section-title h3 {
    font-size: 24px;
  }

  .section-title h4 {
    font-size: 22px;
  }

  .section-title h5 {
    font-size: 18px;
  }

  .section-title h6 {
    font-size: 16px;
  }

  .section-subtitle span {
    font-size: 24px;
  }

  .section-subtitle h3 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .section-title span {
    display: none;
  }

  .section-title h2 {
    font-size: 30px;
  }

  section:hover .section-title h2 {
    font-size: 40px;
  }

  .section-title h3 {
    font-size: 20px;
  }

  .section-title h4 {
    font-size: 18px;
  }

  .section-title h5 {
    font-size: 16px;
  }

  .section-title h6 {
    font-size: 14px;
  }

  .section-subtitle span {
    font-size: 20px;
  }

  .section-subtitle h3 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .section-title span {
    display: none;
  }

  .section-title h2 {
    font-size: 30px;
  }

  section:hover .section-title h2 {
    font-size: 40px;
  }

  .section-title h3 {
    font-size: 18px;
  }

  .section-title h4 {
    font-size: 16px;
  }

  .section-title h5 {
    font-size: 14px;
  }

  .section-title h6 {
    font-size: 12px;
  }

  .section-subtitle span {
    font-size: 18px;
  }

  .section-subtitle h3 {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# seperator
--------------------------------------------------------------*/

#sep1 {
    background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("/Portfolio/assets/media/img/cta-bg.jpeg") fixed center center;
    background-size: cover;
    padding: 120px 0;
}

#sep2 {
    content: "";
    width: 80%;
    height: 5px;
    border-radius: 5px;
    background-color: var(--primary);
}

#sep3 {
    content: "";
    width: 80%;
    height: 5px;
    border-radius: 5px;
    background-color: var(--background-three);
}

.separator {
    overflow: hidden;
    max-width: 100vw;
    width: 100vw;
    margin: 10px auto;
    padding: 0;
}