body{
    background-color: #1b1b1b;
    color: white;
    font-family: system-ui, sans-serif;
}
h1{
    text-align: center;
    font-weight: lighter;
    text-transform: uppercase;
    margin: 40px 0;
    font-size: 36pt;
}
h1:after{
    content: "";
    display: block;
    margin: auto;
    height: 1px; width: 150px;
    background-color: white;
    margin-top: 5px;
}
a{
    color: white;
    text-decoration: none;
    display: block;
    transition: color .25s ease-in-out;
}
a:hover{ color: orange; }
.center{ text-align: center; }
.italic{ font-style: italic; }
.bold{ font-weight: 700; }
.grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    list-style: none;
    padding: 40px; margin: 0;
}
.grid a{
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-size: 18pt;
    text-align: center;
    border: solid 5px white;
    transition: border .25s ease-in-out, color .25s ease-in-out;
}
.grid a:hover{ border-color: orange; }