body {
    background-color: black;
    color:white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    image-rendering: pixelated;
    text-align: justify;
}
h1, h2, h3 {
    margin-top: 0;
    margin-bottom: 5px;
    font-family: Helvetica, sans-serif;
    font-weight: 900;
    color: rgb(255 170 255);
}
a, .copy-link {
    color:unset;
    transition: color 0.1s
}
a:hover, .copy-link:hover {
    color: rgb(255 170 255);
    transition: color 0.1s
}

img {
    filter: sepia(1) hue-rotate(250deg) saturate(2);
    border-radius: 15px;
    margin:10px
}
img:hover {
    filter:none
}
ul {
    margin-left:-20px
}


video, audio, iframe, button {
    display: block;
    width:100%
}
button {
    margin: 10px 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: medium;
    font-weight: bold;
    padding:15px;
    background: linear-gradient(to bottom, black, rgb(124, 62, 124));
    border: solid 2px white;
    border-radius: 20px;
    color:white;
    transition: color 0.1s, border 0.1s;
    cursor: pointer;
}
button:hover {
    border: solid 2px rgb(255 170 255);
    color: rgb(255 170 255);
    transition: color 0.1s, border 0.1s;
}

.entry-info {
    border-top: solid 1pt white;
    border-bottom: solid 1pt white;
    padding: 2px 0;
    font-style: italic;
}
.copy-link {
    text-decoration: underline;
    cursor: pointer;
}