:root {
    --gold-color: #a28a47;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: "Arial", sans-serif;
    font-size: 12px;
    color: var(--gold-color);
}

body {
    background: #000;
}

main {
    width: 100%;
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

svg {
    width: 20em;
    margin: 0 0 30px 0;
}

path, polygon, rect {
    fill: var(--gold-color);
}

p {
    text-align: center;
    font-size: 1.2em;
    line-height: 1.8em;
}

div {
    width: 100%;
    max-width: 576px;
    padding: 3em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

a, a:visited {
    border-bottom: 1px dashed var(--gold-color);
    text-decoration: none;
    color: var(--gold-color);
}
