/* Personal CSS file for future projects
   Start off with some good classes for responsiveness */
/* Cardinal Red: #8C1515 */

*, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.container {
    margin: 0 auto;
    max-width: 80rem;
    width: 70%;
}

/* Disable columns at 640px */
@media (min-width: 640px) {
    .column {
        float: left;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .column.half {
        width: 50%;
    }
    .column.quarter {
        width: 25%;
    }
    .column.threeq {
        width: 75%;
    }
    .column.full {
        width: 100%;
    }
    .column.third {
        width: 33%;
    }
}
.column.rest {
    overflow: hidden;
    float: none;
}

.row:before, .row:after {
    content: " ";
    display: table;
}

.row:after {
    clear: both;
}

.row {
    margin: 0px;
    padding: 0px;
    *zoom: 1;
}

/* Remaining */

body {
    font-family: sans-serif;
    font-size: 18px;
    color: #444444;
    background-color: white;
    line-height: 140%;
}

a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

a:link, a:visited {
    color: #8C1515; /* All about that cardinal red */
    text-decoration: none;
}

a:hover, a:active {
    color: #AC5555;
    text-decoration: underline;
}

/* Useful classes */
.center {
    text-align: center;
}

td {
    padding-right: 10px;
}
