body {
    animation: fadeInAnimation ease 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


html {
    -webkit-text-size-adjust: 100%;
}

* {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', 'Allerta Stencil', Arial, sans-serif;
}


a,
a:link,
a:visited,
a:active {
    text-decoration: none;
    color: black;
}

a:hover {
    text-decoration: underline;
    color: black;
}

p {
    font-size: 1rem;
    line-height: 1.5;
}

li {
    list-style: circle;
    color: black;
}

.artwork img {
    width: 100%;
    max-width: 100%;
}

/*article setup start*/
.showwindow {
    background: rgb(230, 230, 230);
    padding: 25px
}

.heading {
    margin-top: 30px;
    margin-bottom: 30px;
}

.paragraph {
    margin-top: 30px;
    margin-bottom: 30px;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.section {
    font-size: 1rem;
}

.mylist {
    font-size: 1.2rem;
    border-top-style: solid;
    border-color: black;
    padding-top: 15px;
    padding-bottom: 15px;
    border-width: thin;
}

.mylink {
    color: black;
    text-decoration: underline;
}

/*article setup end*/