* {
    margin: 0;
}

html {
    height: 100%;
    color-scheme: dark;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    image-rendering: pixelated;
}

#wrapper {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    max-width: 500px;
    height: fit-content;
    background-color: #141414;
    box-shadow: 5px 4px black;
}

hr {
    color: whitesmoke;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

h2, h3, p {
    text-align: center;
    padding: 10px 20px;
    font-family: 'Noto Sans', sans-serif;
    color: whitesmoke;
}

footer {
    width: 100%;
    bottom: 0;
    position: absolute;
}

footer > p {
    color: whitesmoke;
    font-size: 9pt;
    padding: 5px 0px;
}

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

a:hover, a:active {
    text-decoration: underline;
}

form {
    display: grid;
    place-items: center;
}