p {
    padding-top: 15px;
}

a {
    size: 16px;
    color: #B21F50;
    text-decoration: underline wavy;
}

*:focus {
    border: 6px dashed #417243;
    outline: none;   
}

h1 {
    line-height: 2;
    text-align: center;
    font-family: Syncopate, sans-serif;
}

body {
    background-image: url("../images/pigeon-background.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-color: #DDDDDD;
}

table {
    border-collapse: separate;
    border-spacing: 0px;
    border-radius: 23px;
    border: 2px solid black;
    margin: auto;
    
}

td {
    text-align: center;
    border-bottom: 2px solid black;
    padding: 10px;
}



th {
    padding: 10px;
}

thead {
    min-width: 125px;
    padding: 10px;
    text-transform: uppercase;
    color: white;
    background-color: #7e0820;
    text-align: center;
}

tbody th {
    border-bottom: 2px solid black;
    border-right: 2px solid black;
    padding: 10px;
}



tr:nth-child(even) {
    background-color: #D1D1D1;
}

tr:hover {
    background-color: #7e082040;
    transition-duration: 0.5s;
    transition-property: background-color;
}

thead th:last-child{
    border-top-right-radius: 20px;
}

thead th:first-child{
    border-top-left-radius: 20px;
}

tbody tr:last-child th{
    border-bottom-left-radius: 20px;
}

tbody tr:last-child td:last-child{
    border-bottom-right-radius: 20px;
}

tbody tr:last-child td, tbody tr:last-child th{
    border-bottom: none;
}