html * {
    font-family: "Comic Sans MS", cursive;
}

body {
    background-color: gainsboro;
}

a:link, a:visited {
    color: #505050;
    text-decoration: none;
}

a:hover {
    color: black;
    text-decoration: none;
}

.container {
    width: 75%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.column {
    float: left;
    padding: 10px;
}

.left {
    width: 20%;
    background-color: gainsboro;
}

.right {
    background-color: white;
    width: 80%;
    border: 1px solid darkgrey;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}