.articleContent {
    & b {
        font-weight: bolder;
    }
    
    & i {
        font-style: italic;
    }

    .quote::before {
        content:'"';
    }

    .quote::after {
        content:'"';
    }

    .blockQuote {
        display: block;
        padding: 10px 30px;
        margin: 20px 10%;
        background-color: rgba(255,255,255,20%);
        border-radius: 20px;
        text-align: center;
        font-weight: 500;
        font-size: 25px;
    }

    & .highlightsRed {
        background-color: rgba(255,0,0,50%);
        padding: 2px 5px;
    }

    & .highlightsGreen {
        background-color: rgba(0,255,0,50%);
        padding: 2px 5px;
    }

    & .highlightsBlue {
        background-color: rgba(0,0,255,50%);
        padding: 2px 5px;
    }

    & .color-red {
        color: rgba(255,0,0,100%);
    }

    & .color-green {
        color: rgba(0,255,0,100%);
    }

    & .color-blue {
        color: rgba(0,0,255,100%);
    }

    & a {
        color: rgb(255, 0, 0);
        padding: 2px 5px;
        text-decoration: none;
        font-weight: bold;
    }

    & a:link {
        color: rgb(0, 255, 0);
    }

    & a:visited {
        color: rgb(0, 255, 0);
    }

    & a:hover {
        background-color: rgba(255, 255, 255, 30%);
        text-decoration: none;
        cursor: pointer;
        color: white;
    }

    & a:active {
        color: rgb(97, 179, 255);
    }

    .underline {
        text-decoration: underline;
    }
    
    .code-segment {
        border-radius: 20px;
        background-color: rgb(0,0,0);
        color: rgb(0,255,0);
        font-family: "Segoe UI","Liberation Sans",sans-serif;
        font-size: larger;
    }
    
    .code-function {
        display: block;
        border-radius: 20px;
        background-color: rgb(0,0,0);
        color: rgb(0,255,0);
        padding: 0px 10px 10px 10px;
        margin: 0px 10px;
        font-family: "Segoe UI","Liberation Sans",sans-serif;
        font-size: larger;
    }
    
    .code-block {
        display: block;
        padding: 0px 10px 10px 10px;
        border-radius: 20px;
        background-color: rgb(0,0,0);
        color: rgb(0,255,0);
        margin: 0px 10%;
        font-family: "Segoe UI","Liberation Sans",sans-serif;
        font-size: larger;
    }

    .centeralign {
        text-align: center;
    }

    .image1, .image2, .image3 {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }

    .image1 img {
        margin: 3px;
        max-width: 90%;
    }

    .image2 img {
        margin: 3px;
        max-width: 45%;
    }

    .image3 img {
        margin: 3px;
        width: 30%;
    }

    @media screen and (max-width: 1200px) {
        .image2 img {
            max-width: 90%;
        }

        .image3 img {
            max-width: 40%;
            width: 40%;
        }
    }

    @media screen and (max-width: 900px) {
        .image3 img {
            max-width: 90%;
            width: 90%;
        }
    }

    .alt-font1 {
        font-family: "Segoe UI","Liberation Sans",sans-serif;
    }

    .alt-font2 {
        font-family: "monospace";
    }

    .card1 {
        border: 2px solid none;
        border-radius: 20px;
        padding: 20px 50px;
        margin: 15px 100px;
        background-color: rgba(0, 0, 0, 0.4);
    }

    .card2 {
        border: 2px solid none;
        border-radius: 20px;
        padding: 20px 50px;
        margin: 15px auto;
        background-color: rgba(0, 0, 0, 0.4);
        text-align: center;
        max-width: 500px;
    }

    .two-columns {
        column-count: 2;
        column-rule-style: solid;
        column-gap: 40px;
    }
}