@media (min-width:768px) { /* PCs/laptops */
    #editor-wrap{
    width: 120rem;
    margin-left: auto;
    margin-right: auto;
}

#blogHeader {
    font-size: 160%;
    max-width: 120rem;
    margin-left: auto; margin-right: auto;
    font-family: Inter, sans-serif;
}
#blogContentBox {
    display: flex;
    flex-wrap: wrap;
    max-width: 120rem;
    margin-left: auto; margin-right: auto;
    text-align: center;
}
.blogPost {
    border: solid 0.5rem black;
    max-width: 25%;
    margin-left: auto; margin-right: auto; margin-top: 1.5rem;
    font-family: Inter, sans-serif;
    margin-bottom: 3rem;

    a {
        text-decoration: none;
    }

    img {
        max-width: 30rem;
        max-height: 30rem;
        border-bottom: 0.5rem black solid;
    }
    .blogTextTeaser {
        font-size: 160%;
    }

}
.blogPost:hover {
    transform: scale(1.05);
    box-shadow: 0rem 0rem 0.2rem purple;
}
.blogPost:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translateY(100%);
}

#pageSelectWrap {
    max-width: 120rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    margin-top: 3.5rem;
    justify-content: center;
    text-align: center;
}
#pageSelect {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    align-items: center;
    gap: 1rem;
    width: 100%;

    .pageSelectElement {
        display: flex;
        font-family: Inter, sans-serif;
        font-weight: bolder;
        font-size: 160%;
        text-decoration: none;
        margin: 1rem;
        padding-left: 2rem; padding-right: 2rem; 
        border: 0.2rem solid black;
        border-radius: 5%;
        text-align: center;
        align-items: center;
        justify-content: center;

    } .pageSelectElement:hover {
        box-shadow: 0rem 0rem 0.5rem purple;
    }
}

/*//////////////////////////////////////////////////////////////////////////////////////////////////*/

#articleBoxHead {
    display: block;
    justify-content: center;
}
#articleBoxContainer {
    width: 120rem;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    font-family: Inter, sans-serif;
    font-size: 160%;

    * {
    margin-left: auto;
    margin-top: auto;
    text-align: center;
    }
} img {
    max-width: 120rem;
}

/*
STATIC elements
////////////////////////////////////////////////////////////////////////////////////////////////////////////
ANIMATION elements & Transitions
*/

.pageSelectElement {
    background: rgb(255, 208, 253);
    scale: 100%;
    color: black;
    transition-property: background, scale, color;
    transition-duration: 1s;
    transition-delay: 0.5s;
}
.pageSelectElement:hover {
    scale: 120%;
    color: white;
    background: purple;
    transition-duration: 1s;
    transition-delay: 0s;
} 
}