

table
{
    margin-top: 20px;
    border: 2px solid black;
    border-collapse: collapse;
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-family: 'Times New Roman';

}

th
{
    text-align: center;
    font-family: 'Times New Roman';
    font-size: 25px;
    font-weight: bolder;
    border: 1px solid black;
    padding: 20px;
}

td
{
    text-align: center;
    font-family: 'Times New Roman';
    font-size: 20px;
    font-weight: bolder;
    font-style: italic;
    border: 1px solid black;
    padding: 20px;
}

tr
{
    text-align: center;
    border: 1px solid black;

}


body
{
    background: linear-gradient(to left, #ffffff 0%, #ff0000 100%);

}

h1
{
    text-align: center;
    font-size: 3em;
}

nav a
{
    font-family: Arial, sans-sarif;

    color: black;


    font-size: 20px;
    display: inline-block;
    padding-left: 50px;
    padding-right: 50px;

    transition: transform 0.3s ease;
}

a:hover
{
    color: blue;
    transform: scale(1.2);
}