@keyframes slideleft {
    from { background-position: 0px; }
    to { background-position: 500px; }
}

@keyframes donAnimation{
    0% {right: 0px;}
    50% {right: 5px;}
    100% {right: 0px;}
}

body {
    background-blend-mode: overlay;
    background-image: repeating-linear-gradient(rgb(17, 4, 30), rgb(8, 16, 24),rgb(17, 4, 30) );
}

#don {
    border-radius: 10px;
    float:right;
    position: relative;
    margin: 10px;
    animation-name:donAnimation;
    animation-iteration-count: infinite;
    animation-duration: 0.1s;
    clear: left;
}
#don :hover{
    size: 110%;
}
h1 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-sizing: border-box;
    width: fit-content;
    border: 7px solid;
    border-radius: 10px;
    padding: 10px;
    background-color: rgb(255, 255, 255);
    color: rgb(33, 8, 29);
    border-color: rgb(104, 44, 112);
}

#title{
    float: none;
    clear: both;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size:xx-large;
    box-sizing: border-box;
    border: 10px solid;
    border-radius: 10px;
    padding: 10px;
    background-image: url(Assets/donquixote2.gif);
    background-blend-mode: overlay;
    background-color: rgba(255, 255, 255, 0.89);
    animation: slideleft linear infinite 5s;
    background-size: 100px;
    background-repeat: repeat-x;
    color: rgb(33, 8, 29);
    border-color: rgb(104, 44, 112);
}

h3, h2, img {
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    box-sizing: border-box;
    width:fit-content;
    border: 5px solid;
    border-radius: 10px;
    padding: 5px;
    background-color:rgba(255, 255, 255, 0.904);
    border-color:rgb(104, 44, 112);
    overflow:auto
}

p, h4, ul, ol, table {
    box-sizing: border-box;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    width:fit-content;
    border: 5px solid;
    border-radius: 10px;
    padding: 5px;
    color: rgb(20, 3, 11);
    background-color: rgba(255, 255, 255, 0.749);
    border-color: rgb(158, 81, 158);
    overflow:auto
}

#links :hover{
    size-adjust: 110%;
    background: rgb(181, 181, 181);
}

#links:visited{
    color: rgb(21, 255, 0);
}
p em:nth-child(1){
    text-decoration: underline;
}
h1:first-child{
    text-decoration: double underline;
}
Li:last-child{
    text-decoration: underline black;
}
li:nth-child(2n-1){
    text-align: right;
    text-decoration: line-through
}