* {
    /* border: 1px solid red; */
}

:root {
    --darker-gray: #070707;
    --dark-gray: #363636;
    --gray: #727272;
    --light-gray: #dfdfdf;
    --lightest-gray: #f2f2f2;

    --orange: #FF9D00;
    --red: #c11432;
    --blue: #009ada;
    --green: #66a64f;
    --yellow: #fdd10a;
}

html,
body {
    /* scrollbar-width: none; */
    width: fit-content;
    margin: 0;
}

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

hr {
    border: 2px solid var(--light-gray);
    height: 450px;
    margin: 0 100px;
}

.block {
    display: flex;
    width: 1000px;
    height: 700px;
    flex-direction: column;
    justify-content: center;
    margin: 0 150px;

    a {
        color: var(--dark-gray);
        text-decoration: var(--blue) 3px underline;
    }

    p {
        font-family: "nimbus-roman", serif;
        font-weight: 400;
        font-style: normal;
        font-size: 22px;
        color: var(--dark-gray);
    }

    h1 {
        font-family: "benton-modern-display";
        font-weight: 400;
        font-style: italic;
        font-size: 80px;
        color: var(--darker-gray);
        margin: 5px 0;
    }

    h2 {
        font-family: "roboto-slab", serif;
        font-weight: 700;
        font-style: normal;
        font-size: 30px;
        color: var(--darker-gray);
        margin: 0;
    }

    h5 {
        font-family: "franklin-gothic-std", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 16px;
        color: var(--dark-gray);
        margin: 15px 0;
    }

    h6 {
        font-family: "franklin-gothic-std", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 12px;
        color: var(--dark-gray);
        margin: 2px 0;
    }

    .block-quote {
        margin: 15px 75px;
        font-style: italic;
        /* border-left: var(--light-gray) 2px solid; */
    }

    .image-container {
        display: flex;
        flex-direction: column;
        align-items: center;

        h2 {
            margin: 2px;
        }

        .image {
            display: flex;
            flex-direction: column;
            align-items: center;

            img {
                width: 100%;
            }
        }

        p {
            font-family: "franklin-gothic-std", sans-serif;
            font-weight: 400;
            font-style: normal;
            font-size: 12px;
            color: var(--gray);
            margin: 10px 0;
            text-align: left;
            align-self: flex-start;
        }

        .credit {
            margin-left: 4px;
            font-style: italic;
            font-size: 10px;
        }
    }

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

        p {
            font-family: "roboto-slab", sans-serif;
            font-weight: 400;
            font-style: normal;
            font-size: 22px;
            color: var(--darker-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            width: fit-content;

            padding: 10px 25px;
            border-radius: 5px;
            border: 3px solid var(--darker-gray);
        }
    }

    #one-pixel {
        background-color: black;
        height: 1px;
        width: 1px;
        margin: 2px;
    }

    #gpt-1-params {
        background-color: var(--blue);
        height: 153px;
        width: 153px;
        margin: 2px;
    }

    #gpt-2-params {
        background-color: var(--green);
        height: 400px;
        width: 750px;
        margin: 2px;
    }
}

.gpt-3-block,
.gpt-4-block,
.gpt-5-block {
    /* border: 3px solid red; */
    background-color: var(--yellow);
    background: linear-gradient(90deg, rgba(253, 209, 10, 1) 0%, rgba(255, 255, 255, 1) 3%, rgba(255, 255, 255, 1) 97%, rgba(253, 209, 10, 1) 100%);
    height: 600px;
    width: 58333.33px;
    display: inline-flex;
    align-items: center;

    .title {
        font-family: "roboto-slab", serif;
        font-weight: 700;
        font-style: normal;
        font-size: 22px;
        color: var(--darker-gray);
        margin: 15px;
        width: max-content;
        align-self: flex-start;
    }

    .block {
        height: 600px;
        margin: 0 200px;
    }
}

.gpt-4-block {
    background: #C11432;
    background: linear-gradient(90deg, rgba(193, 20, 50, 1) 0%, rgba(255, 255, 255, 1) 3%, rgba(255, 255, 255, 1) 97%, rgba(193, 20, 50, 1) 100%);
}

.gpt-5-block {
    background: url(images/webp/noise.webp) repeat 0 0;
    background-repeat: repeat;
}