.TT-Text{
    text-align: center;
    color: black;
    animation-name: appear;
    animation-duration: 2s;
}
body{
    background-image: linear-gradient(to bottom, blue, blueviolet);
    height: 100%;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.table-active{
    background-color: blueviolet;
    color: white;
}
.table-active:hover{
    background-color: white;
    color: blueviolet;
}
@keyframes appear{
    from{color:blue}
    to{color: black;}
}
@keyframes day-appear{
    from{color:blue}
    to{color: yellowgreen;}
}
.times{
    color: yellowgreen;
    animation-name: time-animate;
    animation-duration: 2s;
}
@keyframes time-animate {
    from{color:blue}
    to{color: yellowgreen;}
}
#monday{
    color: yellowgreen;
    animation-name: day-appear;
    animation-duration: 0.4s;
}
#tuesday{
    color: yellowgreen;
    animation-name: day-appear;
    animation-duration: 0.8s;
}
#wednesday{
    color: yellowgreen;
    animation-name: day-appear;
    animation-duration: 1.2s;
}
#thursday{
    color: yellowgreen;
    animation-name: day-appear;
    animation-duration: 1.6s;
}
#friday{
    color: yellowgreen;
    animation-name: day-appear;
    animation-duration: 2.0s;
}
.course-list{
    margin: 0;
    color: white;
    font-size: larger;
    text-align: left;
    margin-left: 10px;
}