#grid #content {
    background-color: #f5f5f5;
}
.darkmode #grid #content {
    background-color: #141414;
    color: white;
}

#grid #content h1 {
    margin: 0;
    font-weight: 400;
}

    #grid #content > h2 {
        padding: 5px;
        font-weight: 400;
        text-align: center;
        background-color: white;
    }

.darkmode #grid #content > h2 {
    background-color: #1a1a1a;
    color: white;
}

#grid #content > h2 a {
    text-decoration: none;
    color: black;
}
.darkmode #grid #content > h2 a {
    text-decoration: none;
    color: white;
}

    #grid #content p {
        font-weight: 300;
    }

#grid #content #Socials {
    margin: 0 auto;
    width: fit-content;
    display: grid;
    grid-template-columns: repeat(2, minmax(100px, 429px));
    grid-column-gap: 10px;
}

        #grid #content #Socials img {
            width: 100%;
        }

            #grid #content #Socials img:hover {
                border: 1px solid orange;
            }

#NEWS_SWITCH {
    display: none;
    margin-top: 3px;
    float: right;
    font-size: 15px;
    position: relative;
}
#NEWS_SWITCH > span{
    position: absolute;
    top: 4px;
    left: -90px;
}