body {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-family: "Martian Mono", monospace;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.link {
    width: 32px;
    height: 32px;
    margin: 10px;
}

.link svg {
    width: 100%;
    height: 100%;
    color: black;
}

.links {
    display: flex;
    justify-content: space-between;
}

.copyright {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 16px;
    
    font-size: x-small;
    line-height: 0;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: black;
    }

    body, .link svg {
        color: white;
    }
}