@keyframes no-freedom
{
    from {background-color:white}
    to {background-color:black}
}

@keyframes freedom
{
    from {background-color:white}
    to {background-color:rgba(0, 126, 13, 1)}
}

body
{
    background-color: white;
    /* animation: no-freedom 2s ease;  */
}

.time
{
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background-color: grey;
    width: 800px;
    padding: 10px;
    border-radius: 16px;
    transform: translateY(25vh);
}
.time h3
{
    color: white;
    font-family: monospace;
    font-size: 50px;
}

.time-slot
{
    font-size: 50px;
    font-family: 'Courier New', Courier, monospace;
    display: inline-block;
    background-color: black;
    color: yellow;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}

#freedom
{
    color:rgb(126, 0, 0);
    font-size: 40px;
    font-family: monospace;
    margin-bottom: 10px;
}