body {
    background-color: black;
    color: lightblue;
    font-family: fantasy;
}

a {
    color: lightcoral;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

div {
    background-color: burlywood;
    padding: 15px;
    border: 3px solid grey;
    border-radius: 5px;
    color: black
}

hr {
    border: 1px solid black;
    border-radius: 1px;
}

/* SECTIONS */

.rules {
    font-family: monospace;
    overflow: hidden;
}

.rules.credits {
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: end;
    text-align: center;
}