.big-btn {
    font-size: xx-large;
}
.lg-btn {
    font-size: large
}
#ratings-form-1 label {
    font-size: 1.5rem
}
#canvas-container{
    min-height: 500px;
}
#test-header {
    padding: 10px 0px;
    margin: 0;
}
/* canvas {
    border: 1px solid black;
} */
.timer {
    font-size: 5em;
}
#thank-you h1 {
    font-size: 10rem;
}

.fadeIn {
    visibility: hidden;
}
.fadeIn.show {
    visibility: visible;
    -webkit-animation: fadein 2s;
    animation: fadein 2s;
}

@-webkit-keyframes fadein {
    from {opacity: 0;}
    to {opacity: 1;}
}
@keyframes fadein {
    from {opacity: 0;}
    to {opacity: 1;}
}