body {
    font-family: Arial;
    background-color: #f0f0f0;
}

.error {
    color: red;
}

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

a:hover {
    text-decoration: underline;
}

#site {
    margin-left: auto;
    margin-right: auto;
    display: grid;
    width: 1400px;
    grid-auto-columns: 1000px 400px;
}

div div {
    background-color: white;
    border-radius: 5px;
    padding: 10px 10px 10px 10px;
    margin: 5px 5px 5px 5px;
}

#main {
    grid-column: 1 / 3;
    display: none;
    font-family: 'Courier New';
}

#log {
    grid-column: 1 / 3;
    display: none;
    font-family: 'Courier New';
}

#desc {
    grid-row: 1 / 3;
    grid-column: 1 / 3;
}

#ads {
    grid-column: 2;
    grid-row: 1 / 3;
}

#copyright {
    grid-column: 1 / 3;
    text-align: center;
}

h1 { text-align: center; }