@media only screen and (min-width: 992px){
     body {
        /* border: 4px solid green; */
     }
    .about-me{
        display: flex;
        justify-content: space-evenly;
        width: 100%;
        /* border: 5px solid blue; */
    }

    .about-image {
        border: 10px solid var(--header-font-color);
        border-radius: 50%;
    }

    .about-me-block {
        width: 45%;
        max-width: 350px;
        /* border: 3px solid red; */
        
    }

    .minor-division {
        display: none;
    }

    .portfolio-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-item-and-description {
        display: grid;
        grid-column: span 2;
    }

    .side-by-side-description-and-image{        
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .row1{
        grid-row: 1;
    }

    .column1{
        grid-column: 1;
    }

    .column2{
        grid-column: 2;
    }

    .description p{
        margin-top: 4px;
        margin-bottom: 4px;
    }

    .portfolio-title {
        font-size: 32px;
        margin-bottom: 35px;
    }

}