/*!
 * Random CSS styling
 *
 * Copyright (c) 2017 Alexander McKinnon
 */

/* Link with no text called with <class="nounderline"> */
a.nounderline {
  text-decoration: none;
  text-align: center;

}



* {
    box-sizing: border-box;
}

.customColumn {
    float: left;
    width: 25%;
    padding: 5px;
}

.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: 700px) {
    .customColumn {
        width: 50%;
    }
}
