@import url('https://fonts.googleapis.com/css?family=Fredericka+the+Great&display=swap');
body {background-color: #F7F7ED}
.content {
    display: inline-block;
    margin-top: 10px;
    overflow: hidden;
    position: relative;
}
.filter {
    animation: filter;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    background-color: #6F7072;
    display: block;
    height: 100%;
    top: 0;
    left: -100%;
    overflow: hidden;
    position: absolute;
    width: 100%;
}
.txt {
    animation: text;
    animation-fill-mode: forwards;
    animation-delay: 1s;
    color: #6F7072;
    font-size: 35px;
    font-family: 'Fredericka the Great', cursive;
    padding: 20px;
    opacity: 0;
    text-align: center;
}
.sch {color: #F78F20}
 @keyframes text {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
 @keyframes filter {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}