html {
    --min-width: 90rem;
    --max-width: 1920px;
}

.inner {
    width: var(--min-width);
    min-width: var(--min-width);
    margin: 0 auto;
}

.section {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    min-width: var(--min-width);
    position: relative;
}

.fade-on-scroll {
    opacity: 0;
    transform: translateY(-3rem);
    transition: opacity 1.8s ease-out, transform 1.8s ease-out;
}

.fade-in-scroll {
    opacity: 1;
    transform: translateY(0);
}

:target {
    scroll-margin-top: 9rem !important;
}

.clickable {
    transition: all 0.3s ease;
    cursor: pointer;
}

.clickable:hover {
    transform: scale(1.2);
}
.clickable2{
    position: relative;
    cursor: pointer;
}
.clickable2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #ffec87;
    transition: width 0.4s ease;
}

.clickable2:hover::after {
    width: 100%;
}
.clickable3 {
    transition: all 0.3s ease;
    cursor: pointer;
}

.clickable3:hover {
    transform: scale(1.1);
}

.clickable4 {
    transition: all 0.2s ease;
    cursor: pointer;
}

.clickable4:hover {
    transform: scale(1.02);
}