#content {
    padding: 0;
}

p {
    position: relative;
}

.about-div {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-section, .thoxt-row-section {
    display: block;
    position: relative;
    width: 100%;
    height: fit-content;
}

.page-section {
    font-family: "professor", sans-serif;
    font-size: 2.4em;
}

.text-section {
    text-align: center;
}

.section-yellow {
    background-color: #ff0;
}
.section-black {
    background-color: #000;
    color: white;
}
.section-grey {
    background-color: #f3f3f3;
}

.down-arrow {
    width: 70px;
    height: 70px;
    fill: black;
    position: fixed;
    bottom: 0;
    left: 45%;
    z-index: 1001;
}

.section-content {
    margin: 40px;
}

.last-section .section-content {
    margin: auto;
}

.last-section p {
    margin: 40px 20px;
    font-size: 1em;
    line-height: 1.3em;
}

.section-content svg {
    fill: #000;
}

.sub-section {
    position: relative;
    width: 50%;
    text-align: center;
    line-height: 1.3em;
}

.sans {
    font-family: "mr-gabe", sans-serif;
}

.intro {
    width: 700px;
    max-width: 90vw;
    font-size: .7em;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cursor-blink {
    font-family: 'Courier New', Courier, monospace;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.animate-type-in {
    animation: type-in 2s steps(40, end);
}

@keyframes type-in {
    from {
        width: 0;
    }
}

.typing-container {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    width: fit-content;
    border-right: 0.15em solid #222; /* Cursor effect */
    animation: typing 4s steps(30, end), blink-caret 0.75s step-end infinite;
}

.typing-effect {
    display: inline-block;
    font-family: monospace;
    font-size: 1em;
}

@keyframes typing {
    from { width: 0; }
    to { width: 14ch; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #222; }
}

.page-section img {
    position: relative;
    margin: 20px;
    border: 15px solid #ff0;
}

.about-image-vert {
    height: 700px;
    max-height: 90vh;
    width: auto;
    max-width: 80vw;
    object-fit: scale-down;
}

.about-image-horiz {
    width: 1000px;
    max-width: 100vw;
    height: auto;
    object-fit: scale-down;
}

.about-image-smaller {
    width: 65vw;
    max-height: 100vh;
    object-fit: scale-down;
}

.intro-end {
    font-size: 1em;
    line-height: 1.3em;
    margin: 0;
}

.yellow-button {
    font-size: 1.5em;
    margin-right: 20px;
}

.thoxt-row {
    margin: 40px 0;
}

.thoxt-row-content {
    justify-content: center;
    flex-wrap: nowrap;
    font-family: 'Jost', sans-serif;
    text-align: left;
    margin: 0;
}

.thoxt-row img {
    border: none;
    margin: 0;
}

.slide1, .slide2 {
    animation: slideLeft 100s linear infinite;
}

.slide2 {
    animation-direction: reverse;
}

@keyframes slideLeft {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-50%);
    }
}

.right-menu .about-menu-item {
    height: inherit;
}

.right-menu {
    align-items: center;
}