*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
nav{
    width: 100vw;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
@media screen and (max-width:700px) {
    nav{
        flex-wrap: wrap;
    }
}
nav a{
    text-decoration: none;
    padding: 1rem;
    text-align: center;
    color: teal;
    box-shadow: 3px 3px 0px teal;
    border: 1px solid teal;
}
h1 div,h5 div{
    margin-inline: 0.75rem;
    /* border: 1px solid red; */
    max-width: 50px;
    min-width: 50px;
    min-height: 10px;
    display: inline-block;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* border: 1px solid red; */
}
.box{
    margin: 1.2rem 0  0 .5rem;
    border: 1px solid black;
    padding: 1.5rem 3rem;
    transform: rotate(-5deg);
    box-shadow: 3px 3px 0px #000000;
}
.top-box{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    width: 100%;
}
canvas{
    margin-top: 3rem;
}
h1,h5{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}
h1:nth-child(1){
    margin-bottom: 1rem;
}
section{
    width: 100vw;
    height: max-content;
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
}
.table-div{
    padding: 1rem;
    width: 100%;
}
table{
    margin-top: 1rem;
    width: 80%;
    margin-inline: auto;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
}
table th{
    font-size: 1.5rem;
}
.day > td {
    border: none;
    border-block:1px solid black;
    padding: .5rem;
}
.today{
    background-color: teal;
    color: white;
    font-weight:800;
}
span{
    color: teal;
    margin-left: 1rem;
}
u{
    text-decoration: wavy underline;
    text-decoration-color: tan;
}