body{
    background-color: #ffe4c4;
    text-decoration: none;
}

h1, h2{
    color: gray;
}

p{
    color:rgb(255, 78, 78);
}

.info:hover{
    background-color: white;
}

table {
    border: 1px solid black;
    width: 50%;
    margin: 20px auto;
    border-collapse: collapse;
}
table tr td {
    border: 1px solid black;
    padding: 10px;
    text-align: center;
}
table tr td:nth-child(even) {
    color: brown;
}
table tr td:first-child {
    color: red;
}
table tr td:last-child {
    font-family: 'Courier New', Courier, monospace;
}
p:first-of-type {
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
}
p:last-of-type {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}