#content {
    padding: 0;
}

.test  { 
    display: none;
}

.about-section {
    margin: 10px 0;
}

.about-outer,
.about-section,
.flex-center-items,
.flex-subsection,
.text-subdiv {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
}

.about-outer {
    max-width: 1200px;
    margin: auto;
    margin-bottom: 40px;
    overflow-x: hidden;
}

.about-outer h1, .about-outer h2, .about-outer p {
    cursor: auto;
}

.flex-subsection {
    flex-direction: row;
    gap: 5px;
    justify-content: space-evenly;
}

.flex-center-items {
    width: 50%;
}

.large-logo {
    font-family: 'antipol-variable', sans-serif;
    font-weight: 600;
    font-size: 9rem;
    line-height: 1ch;
    color: white;
    text-shadow: -9px 9px 0 var(--thoxt-black);
    transform: translateX(-30%);
}

@keyframes titleShadow {
    0% {
        color: white;
        transform: translateX(-30%);
        text-shadow: -9px 9px 0 var(--thoxt-black);
    }
    100% {
        color: black;
        transform: translateX(0);
        text-shadow: -5px 5px 0 var(--thoxt-lemon);
    }
}

.thoxt-intro.initiated .large-logo {
    color: black;
    transform: translateX(0);
    text-shadow: -5px 5px 0 var(--thoxt-lemon);
    animation: titleShadow 1s ease;
}

.subheading-cyan,
.subheading-lemon {
    font-family: 'antipol-variable', sans-serif;
    font-weight: medium;
    font-size: 3rem;
    display: inline-block;
    white-space: nowrap;
    color: black;
    text-shadow: -3px 3px 0 var(--thoxt-white);
    padding: 0 5px;
    line-height: 1;
    transform: translateX(-30%);
}

.about-section.initiated .subheading-lemon {
    background: var(--thoxt-lemon);
    animation: animateLemonBg 1s ease;
    transform: translateX(0);
}

.about-section.initiated .subheading-cyan {
    background: var(--thoxt-cyan);
    animation: animateCyanBg 1s ease;
    transform: translateX(0);
}

@keyframes animateLemonBg {
    0% {
        transform: translateX(-30%);
        background: none;
    }
    100% {
        transform: translateX(0);
        background: var(--thoxt-lemon);
    }
}

@keyframes animateCyanBg {
    0% {
        transform: translateX(-30%);
        background: none;
    }
    100% {
        transform: translateX(0);
        background: var(--thoxt-cyan);
    }
}

.text-subdiv {
    margin: 10px 0;
}

.about-text {
    font-size: 1.5rem;
}

.thoxt-intro {
    z-index: 1;
}

.faux-mobile-wrapper {
    width: auto;
    height: 90vh;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 42px;
    border: 7px solid transparent;

    background:
        linear-gradient(#000, #000) padding-box,
        linear-gradient(145deg,
            #fff 0%,
            #F4FF30 15%,
            #cbd500 45%,
            #F4FF30 70%,
            #fff 100%) border-box;

    box-shadow:
        inset 2px 2px 3px rgba(255, 255, 255, 0.75),
        inset -3px -3px 5px rgba(0, 0, 0, 0.45),
        0 4px 10px rgba(0, 0, 0, 0.35);
}

.faux-mobile-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-cloud {
    height: 500px;
    z-index: 0;
}

.cloud-svg {
    position: absolute;
    left: 48%;
    bottom: 0;
    width: 70%;
    max-width: 800px;
    height: auto;
    transform: translateX(-50%);
    filter: saturate(.2) blur(2.5rem);
}

.about-section.active .cloud-svg {
    animation: animateCloud 1s ease;
    filter: saturate(1) blur(0);
}

@keyframes animateCloud {
    0% {
        filter: saturate(.2) blur(2.5rem);
    }
    100% {
        filter: saturate(1) blur(0);
    }
}

.intro-cloud .about-text {
    text-align: center;
    font-size: 2rem;
}

.intro-cloud h2 {
    margin: 10px 0 0 0;
}

.thoxt-people-text h2 {
    margin: 10px 0;
}

.thoxt-people-image {
    filter: saturate(.2) brightness(50%);
    margin-bottom: 20px;
}

.about-section.initiated .thoxt-people-image {
    filter: saturate(1) brightness(100%);
    animation: saturate .7s ease;
}

@keyframes saturate {
    0% {
        filter: saturate(.2) brightness(50%);
    }
    100% {
        filter: saturate(1) brightness(100%);
    }
}

.thoxt-rows-div {
    text-align: left;
}

.trending-tags-div,
.trending-topics-div {
    max-width: 100%;
    margin-top: 40px;
}

.thoxt-row {
    margin-right: 0;
    padding-right: 0;
}

.articles-section {
    background-color: var(--thoxt-background);
    overflow-x: hidden;
    padding: 10px;
    border-radius: 15px;
}

.radial-moving-bg.initiated {
    background-image: radial-gradient(circle at 50% 50%, black, grey, var(--thoxt-background));
    background-size: 200% 200%;
    animation: moveGradient 18s ease infinite alternate;
}

@keyframes moveGradient {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 100%;
    }
}

.dark-mode .thoxt-row-meta-desc {
    color: #ccc;
}

.sticker-section {
    height: 500px;
}

.stickers-left,
.stickers-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
}

.stickers-left {
    left: 0;
    right: unset;
}

.social-icon-sticker {
    position: absolute;
    width: 140px;
    opacity: 0;
    filter: saturate(.3);
}

.about-section.active .social-icon-sticker:hover,
.social-icon-sticker:hover {
    width: 150px;
    filter: saturate(1.3);
}

.about-section.active .social-icon-sticker {
    filter: saturate(1);
    opacity: 1;
}

/* randomize */
.stickers-left :nth-child(1) {
    top: 10px;
    left: 40%;
}

.stickers-left :nth-child(2) {
    top: 220px;
    left: 180px;
}

.stickers-right :nth-child(1) {
    top: 0;
    right: 50%;
}

.stickers-right :nth-child(2) {
    top: 100px;
    right: 50px;
}

.stickers-right :nth-child(3) {
    top: 300px;
    right: 35%;
}

.about-button {
    position: relative;
    background-color: transparent;
    border: none;
    font-size: 1.6rem;
    margin: 10px 0;
    background-image: radial-gradient(circle at 50% 50%, transparent, rgb(244, 255, 48, 0.5));
    background-size: 200% 200%;
    animation: moveGradient 7s ease infinite alternate;
}

.about-button::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background-image: radial-gradient(circle at 50% 50%, transparent, rgb(48, 244, 255, 0.6));
    background-size: 200% 200%;
    animation: moveGradient 10s ease infinite alternate-reverse;
    animation-delay: 1s;
    pointer-events: none;
}

.about-button,
.social-icon-sticker {
    transform: translateX(-30%);
}

.about-section.initiated .about-button,
.about-section.active .social-icon-sticker {
    transform: translateX(0);
    animation: swipeRight 1s ease-in;
}

.about-section.initiated .about-button {
    animation: swipeRight 1s ease, moveGradient 7s ease infinite alternate;
}

@keyframes swipeRight {
    0% {
        transform: translateX(-30%);
    }
    100% {
        transform: translateX(0);
    }
}

@media screen and (max-width: 1000px) {

    .about-outer {
        padding: 20px 10px 0 10px;
    }

    .about-section {
        margin: 0;
    }

    .flex-subsection {
        flex-direction: column;
    }

    .large-logo {
        font-size: 5.1rem;
        line-height: 1.5ch;
    }

    .subheading-cyan,
    .subheading-lemon {
        font-size: 2.1rem;
        white-space: normal;
    }

    .about-text,
    .intro-cloud .about-text {
        font-size: 1.5rem;
    }

    .flex-center-items {
        width: 100%;
    }

    .faux-mobile-wrapper {
        width: 90vw;
        height: calc(90vw * 16 / 9);
    }

    .intro-cloud {
        height: 400px;
        justify-content: flex-end;
        overflow-x: hidden;
    }

    .cloud-svg {
        height: 400px;
        width: auto;
        max-width: unset;
        overflow-x: hidden;
    }

    .intro-cloud .text-subdiv {
        margin-bottom: 5px;
    }

    .articles-section {
        width: 100vw;
        border-radius: 0;
        padding: 0;
    }

    .trending-tags-div,
    .trending-topics-div {
        margin-top: 30px;
    }

    .social-icon-sticker {
        position: absolute;
        width: 80px;
        pointer-events: none;
    }

    .stickers-left,
    .stickers-right {
        position: relative;
        display: flex;
        justify-content: space-evenly;
        top: unset;
        right: unset;
        width: 100%;
        height: fit-content;
    }

    .social-icon-sticker {
        position: relative;
        width: 80px;
    }

    .stickers-left :nth-child(1),
    .stickers-left :nth-child(2),
    .stickers-right :nth-child(1),
    .stickers-right :nth-child(2),
    .stickers-right :nth-child(3) {
        top: unset;
        right: unset;
        left: unset;
    }

    .about-button {
        font-size: 1.4rem;
    }
}