/* style for the film page */

/* grid info from https://learncssgrid.com/ */

#contentwrapper {
    animation: fadeInAnimation ease 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
 
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}

body{
    text-align: center;
}

p {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
}
