* {
    box-sizing: border-box;
}

body {
    font-family: Palantino, Garamond;
    padding: 10px;
    background: #lightgray;
}

a:link, a:visited {
    background-color: #333;
    color: white;
    padding: 14px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}


a:hover, a:active {
    background-color: red;
}

/* Header/Blog Title */
.header {
    padding: 30px;
    text-align: center;
    background: lightgray;
}

.header h1 {
    font-size: 50px;
}

/* Style the top navigation bar */
.topnav {
    overflow: hidden;
    background-color: #333;
}

/* Style the topnav links */
.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
    background-color: red;
    color: black;
}

.center {
    margin: 5px 18%;
    width: 80%;
    padding: 5px;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.column {  
    float: left;
    width: 80%;
}

.t-img {
    background-color: #aaa;
    width: 100%;
    padding: 20px;
}

.card {
    background-color: white;
    padding: 20px;
    margin-top: 20px;
    border: 2px solid black;
    outline: red solid 5px;
}

.footer {
    padding: 5px;
    text-align: center;
    background: lightgray;
    margin-top: 5px;
}

#contact {
    border-collapse: collapse;
    width: 100%;
}

#contact td, #contact th {
    border: 0px solid #ddd;
    padding: 8px;
    text-align: center;
}

/* #contact tr:hover {background-color: #ddd;} */

#contact th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center;
    background-color: lightgray;
    color: black;

