* {
    box-sizing: border-box;
}

/* Create two unequal columns that floats next to each other */
.column, .left, .right {
    float: left;
    height: auto; /* Should be removed. Only for demonstration */
}

.left {
    width: 65%;
    padding-left: 3px;
    padding-top: 0px;
    margin-right: 0px;
}

.right {
    width: 35%;
    margin-left: 0px;
    padding-top: 0px;
 
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 500px) {
    .column {
        width: 100%;
}
