#myBlog{
    width: 90vw;
    box-sizing: border-box;
    padding: 25px 25px 50px 25px;  
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 25px;
    border: 2px solid #444444;
    border-radius: 1rem 0.25rem 1rem 0.25rem;
    background: rgba(34, 34, 34, 0.75);
}

#myBlog span{
    margin-top: -40px;
    padding: 5px;
    background: #111111;
    font-size: larger;
    border: 2px solid #444444;
    border-radius: 0.5rem 0.25rem 0.5rem 0.25rem;
    width: 13ch;
    text-align: center;
}

#myBlog span p, #myBlog p{
    background: linear-gradient(to right, white, grey, brown);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#myBlog span p:hover, #myBlog p:hover{
    background: linear-gradient(to right, skyblue, crimson);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#myBlog a img{
    transition: filter 0.4s ease;
    filter: contrast(0.4);
}

#myBlog a img:hover{
    filter: contrast(0) invert(1);
}

@media only screen and (min-width: 320px){
    #myBlog p{
        font-size: larger;
    }
}

#blogHtmlH1{
    margin-top: 125px;
    position: fixed;
    transition: all 0.4s ease;
}

@media only screen and (min-width: 768px){
    #blogHtmlH1{
        margin-top: 200px;
        font-size: xx-large;
    }
}