﻿{
    box-sizing: border-box;
}

.EmployeeColumn {
    float: left;
    width: 50%;
    padding: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    font-size: 16px;
}

/* Clearfix (clear floats) */
.EmployeeRow::after {
    content: "";
    clear: both;
    display: table;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 500px) {
    .EmployeeColumn {
        width: 100%;
    }
}

.EmployeeName {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
    text-indent: 10px;
    text-shadow: 2px 2px 5px gray;
}
