body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;

    background-image: url("../imgs/bg.png");

    color: white;

    font-family: monospace;
}

a,
a:hover,
a:visited,
a:active,
#dc {
    color: mediumslateblue;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

ul {
    list-style: square;
    padding: 0;
    margin: 0;

    text-align: left;
}

nav ul {
    list-style: none;
    text-align: center;
}

main {
    max-width: 50%;

    background-color: rgba(0, 0, 0, 0.88);
    border: 0.5em solid rgba(0, 0, 0, 0.5);
    padding: 3em;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
}

section#download {
    text-align: center;
}

#download div {
    display: inline-block;
    padding-inline: 1em;
    margin-block: 1em;
    color: thistle;
    background-color: rgba(255, 255, 255, 0.2);
}

#download div a {
    color: thistle;
    text-decoration: none;
}
#download div a:hover {
    color: rgb(209, 140, 209);
    text-decoration: underline;
}