body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    align-self: center;
}

#wrapper {
    width: 1000px;
    background-color: #ffffff;
    margin-inline: auto;
    align-self: center;
}

nav {
    margin-top: 12px;
    font-size: 20px;
    align-self: center;
}

nav > ul {
    display: flex;
    justify-content: space-evenly;
    background-color: #0C243C;
}

ul {
    list-style: none;
}

.special {
    background-color: #ffffff;
    font-style: bold;
    color: rgb(0, 0, 0);
}

.column {
    float: left;
    width: 45%;
    padding: 15px;
}

.row::after {
    content: "";
    display: table;
    clear: both;
}

a:link {
    color: #E94D40;
    text-decoration: none;
}

a:hover {
    color: rgb(0, 119, 255);
    text-decoration: none;
}

a:visited {
    color: rgb(0, 225, 255);
    text-decoration: none;
}

.floatleft {
    float: left;
}
.floatright {
    float: right;
}
.clearboth {
    clear: both;
}

footer {
    color: #ffffff;
    background-color: #0C243C;
}