/* SIZES */

.content {
    height: 100vh;
}

/* FONT SIZES & COLOR, BORDERS */

.content .text {
    font-size: 6vw;
    color: black;
}

/* MISCELLANEOUS */

    /* CONTENT BACKGROUND */

    .content::before {
        opacity: 0.5;
        background-image: url("images/gpt.png");
        background-repeat: no-repeat;
        background-size: cover;
        /* background-size: 100vw auto; */
        background-attachment: fixed;
        background-position: center top;
        position: absolute;
        content: '';
        top: 0px;
        right: 0px;
        bottom: 0px;
        left: 0px;
    }

    @media only screen and (max-width: 600px) {
        .content::before {
            background-attachment: scroll;
        }

        .content {
            width: 100vw;
            height: 50vh;
        }
    }

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

    .content .text {
        position: relative;
    }