.section.section2 {
    position: relative;
    height: 100vh;
    width: 100%;
    background-color: var(--quinary);
    overflow: hidden;
    color: var(--quaternary); 
}

.section.section2 .iam {
    position: absolute;
    left: 50%;
    top: 37%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: lighter;
    font-family: 'Gasoek One';
    font-weight: lighter;
    text-align: center;
    z-index: 2;
    user-select: none;
}

.section.section2 .centertitle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: lighter;
    font-family: 'Gasoek One';
    font-weight: lighter;
    text-align: center;
    z-index: 2;
    color: var(--tertiary); 
    user-select: none;
}

.section.section2 .iamImages {
    position: absolute;
    inset: 0;
    overflow: hidden;
    clip-path: inset(0 5.5rem 0 0);
    z-index: 1;
}

.section.section2 .iamImage {
    position: absolute;
    width: min(18vw, 2060px);
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    cursor: grab;
    user-select: none;
    -webkit-user-drag: element;
    touch-action: none;
}

.section.section2 .iamImage:active {
    cursor: grabbing;
}

.section.section2 .iamImages .iamImage:nth-child(1) { left: calc(50% - 46vw); top: calc(50% - 25vh); }
.section.section2 .iamImages .iamImage:nth-child(2) { left: calc(50% - 34vw); top: calc(50% - 38vh); }
.section.section2 .iamImages .iamImage:nth-child(3) { left: calc(50% + 12vw); top: calc(50% - 45vh); }
.section.section2 .iamImages .iamImage:nth-child(4) { left: calc(50% + 20vw); top: calc(50% - 20vh); }
.section.section2 .iamImages .iamImage:nth-child(5) { left: calc(50% - 39vw); top: calc(50% - 1vh); }
.section.section2 .iamImages .iamImage:nth-child(6) { left: calc(50% + 23vw); top: calc(50% - 8vh); }
.section.section2 .iamImages .iamImage:nth-child(7) { left: calc(50% - 2vw); top: calc(50% - 42vh); }
.section.section2 .iamImages .iamImage:nth-child(8) { left: calc(50% + 0vw); top: calc(50% + 18vh); }
.section.section2 .iamImages .iamImage:nth-child(9) { left: calc(50% - 20vw); top: calc(50% + 21vh); }
.section.section2 .iamImages .iamImage:nth-child(10) { left: calc(50% - 7vw); top: calc(50% + 26vh); }
.section.section2 .iamImages .iamImage:nth-child(11) { left: calc(50% + 19vw); top: calc(50% + 14vh); }
.section.section2 .iamImages .iamImage:nth-child(12) { left: calc(50% - 45vw); top: calc(50% + 10vh); }
.section.section2 .iamImages .iamImage:nth-child(13) { left: calc(50% - 22vw); top: calc(50% - 43vh); }
.section.section2 .iamImages .iamImage:nth-child(14) { left: calc(50% - 28vw); top: calc(50% + 25vh); }
.section.section2 .iamImages .iamImage:nth-child(15) { left: calc(50% + 22vw); top: calc(50% - 40vh); }

/* find font for this */
/* .scroll-ribbon {
    position: absolute;
    left: 50%;
    width: 200vw;
    background-color: var(--secondary);
    color: var(--primary);
    padding: 1rem 0;
    font-size: 2.5rem;
    font-weight: bold;
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    z-index: 5;
    user-select: none;
}

.ribbon-1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(20deg);
}

.ribbon-2 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-20deg);
}

.scrolling-text {
    display: flex;
    animation: slideText 25s linear infinite;
}

.scrolling-text.reverse {
    animation: slideTextReverse 30s linear infinite;
}

@keyframes slideText {
    0%  { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes slideTextReverse {
    0%  { transform: translateX(-50%); }
    100% { transform: translateX(0); }
} */
