:root {
    color-scheme: dark;

    --goldenrod: #ffbb00;
    --link: hsl(211, 100%, 52%);
}

html {
    background-color: Canvas;
    color: CanvasText;
}

body {
    font-family: sans-serif;
}

main {
    margin-top: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 4em;
}

#logo {
    display: flex;
    align-items: center;
}

#logo img {
    height: 2em;
    margin-bottom: 0.4em;
    margin-right: 1em;
}

#download-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 1em;
}

#download {
    display: flex;
    align-items: center;
    gap: 1em;
    padding: 1em 2em;
    border: 1px solid ButtonBorder;
    border-radius: 1em;

    color: CanvasText;
    text-decoration: none;
    text-align: center;

    transition: 0.2s;
}

#download:hover {
    background-color: ButtonFace;
}

#download svg {
    width: 1.5em;
}

#download-info {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    text-align: left;
}

#download-info small {
    color: GrayText;
}

#more-downloads {
    font-size: 0.8em;
    color: var(--link);
}
