
@charset "utf-8";
/* CSS Document */
* {
    box-sizing: border-box;
}

/* Create three unequal columns that floats next to each other */
.column {
    float: left;
    padding: 0px;
    height: 150px;
}

.left {
  width: 40%;
}

.middle {
  width: 39%;
}
.right {
  width: 21%;
}
/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}
@media (max-width: 600px) {
    .column {
        width: 100%;
    }
}