.mynextclass { center;
    font-weight: 400;
    font-size: 14pt;
    color: maroon;
    background: white;
    max-width: 700px;
    margin: auto;
    border: 2px solid maroon;
    text-align: center;
    padding: 5px 0px 5px 0px;
}

.teachingschedule tr {
   border-bottom: 1px solid black;  
   
}

.teachignschedule td {
    padding: 4px;
}

.teachingschedule table {
    border: 2px solid maroon;
}

.teachingschedule tr:nth-child(even) {
    background-color: #f2f2f2;
}

.teachingschedule tr:nth-child(even):hover {
    background-color: #afa;
}

.teachingschedule tr:nth-child(odd):hover {
    background-color: #afa;
}

@keyframes smooth-appear {
    to {
	bottom: 20px;
	opacity: 1;
    }
}

.teachingschedule {
    margin: auto;
    display: block;
    max-width: 700px;
    animation: smooth-appear 1s ease forwards;
}

