:root {
    background-color: lightgrey;
}
html > body {
    margin: 0;
    margin-top: 100px;
    height: 100%;
}
.divArt > article {
    background: white;
    border-radius: 16px;
    display: flex;
    padding: 20px;
    padding-top: 10px;
    flex-flow: column nowrap; /* A dirty way to fix the issue with images fucking up the dimensions of the article. bleh! */
    -webkit-box-shadow: 0px 0px 36px -10px rgba(0,0,0,1);
    -moz-box-shadow: 0px 0px 36px -10px rgba(0,0,0,1);
    box-shadow: 0px 0px 36px -10px rgba(0,0,0,1);

    word-wrap: break-word;
}
article > span {
    margin: auto;
    color: gray;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
article > span:hover {
    color: #000000,
}
article > * > a, article > a
{
    color: cadetblue;
}
article > audio
{
    max-width: 250px;
    border-radius: 30px;
    background: none;
    filter:   hue-rotate(0deg) saturate(200%) contrast(200%);
}
article > h1 {
    font-size: 100%;
    font-size: 32px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;

}
article > * {
    font-size: 100%;
    font-size: 25px;
    font-family: fantasy;
    margin-left: 30px;
    margin-right: 30px;
}
article > p > b {
    color: royalblue;
}

article > img {
    max-width: 100%;
    align-self: center;
    padding-left: 30px;
    padding-right: 30px;
}

article > hr {
    width: 50%;
    margin: auto;
    color: black;
    height: 3px;
    background-color: black;
    border: none;

    border-radius: 10px;

}

.divArt {
    max-width: 70%;
    
    margin: 0 auto;
    padding-bottom: 100px;
}
#divArt > article {
    font-family: Arial;
}
code {
    border: 1px solid grey;
    border-radius: 4px;
    font-family: monospace;
}