*
{
    margin: 0;
    font-family: "Lucida Console", Monaco, monospace;
    font-family: 'Roboto Mono', monospace;
    line-height: 1;
}

body
{
    width: 100%;
    background: black;
    
}

.center {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content {
    height: min-content;
}

#title {
    color: black;
    background-color: white;
    width: 100%;
    text-align: center;
    font-size: 24pt;
    font-weight: bold;
    margin-top: 16pt;
    margin-bottom: 16pt;
    display: block;
}

main {
    width: 70ch;
    column-count: 4;
    column-gap: 2ch;
}

a {
    display: block;
    text-decoration: none;
    color: white;
    margin-bottom: 4pt;
    width: 16ch;
    text-wrap: nowrap;
}

a:hover {
    color: rgb(255, 170, 0);
}

a:active {
    color: rgb(217, 255, 0);
}

#random {
    border: none;
    outline-style: solid;
    outline-offset: -2pt;
    outline-width: 2pt;
    box-sizing: content-box;
    background-color: black;
    color: white;
    font-size: 12pt;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
    margin-top: 16pt;
    margin-bottom: 16pt;
    padding: 6pt;
}

#random:hover {
    background-color: white;
    color: black;
    outline: none;
}

#random:active {
    color: white;
}

@media (orientation: portrait) {
    main {
        width: 34ch;
        column-count: 2;
    }
}
