*{
    margin: 0; padding: 0; border: 0; box-sizing: border-box; 
}
:root{
    font-size: 62.5%;
}
body{
    background-image: url(../images/wood.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.Title{
    font-size: 5rem;
    text-align: center;
    padding-bottom: 15px;
    color: brown;
}

.Events{
    margin: auto;
    height: 100%;
    font-size: 3rem;
    padding: 0;
    width: 80%;
    table-layout: fixed;
}
.Events td{
    height: 120px;
    width: fit-content;
    background-repeat: no-repeat;
    background-size: cover;
    
}
table, td, th {
    border: 1px solid rgb(111, 0, 255);
}
.Weekdays{
    color: rgb(240, 48, 48);
    background-color: hsla(0, 0%, 0%, 0.5);
    text-align: center;
    font-size: 4rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.Days{
    color:whitesmoke;
}
footer {
    text-align: center;
    font-size: 3rem;

}
footer a{
    color:dodgerblue;
    text-decoration: none;
}
footer a:hover{
    color: red;
}