@charset "utf-8";
body{
    background-color:lightgray;
}
/* CSS Document */

header {
    width: 100%;
    min-height: 100px;
    background-size: cover;
    position: relative;
}

ul {
    list-style: none;
}

/*divImg*/

div.img {
    margin: 5px;
    border: 1px solid #ccc;
    display: inline-block;
    width: 180px;
}

div.img:hover {
    border: 1px solid #777;
}

div.img img {
    width: 100%;
    height: auto;
}

div.desc {
    padding: 15px;
    text-align: center;
}

table {
    color: #333;
    font-family: Helvetica, Arial, sans-serif;
    width: 640px;
    /* Table reset stuff */
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    border: 0 none;
    height: 30px;
}

th {
    /* Gradient Background */
    background: linear-gradient(#333 0%, #444 100%);
    color: #FFF;
    font-weight: bold;
    height: 40px;
}

td {
    background: #FAFAFA;
    text-align: center;
}


/* Zebra Stripe Rows */

tr:nth-child(even) td {
    background: #EEE;
}

tr:nth-child(odd) td {
    background: #FDFDFD;
}


/* First-child blank cells! */

tr td:first-child,
tr th:first-child {
    background: none;
    font-style: italic;
    font-weight: bold;
    font-size: 14px;
    text-align: right;
    padding-right: 10px;
    width: 120px;
}


/* Add border-radius to specific cells! */

tr:first-child th:nth-child(2) {
    border-radius: 5px 0 0 0;
}

tr:first-child th:last-child {
    border-radius: 0 5px 0 0;
}


/*Footer*/

footer {
    background-color: #f5f5f5;
}