@font-face{
    font-family:filmotypehemlock;
    src: url('/fonts/filmotype-hemlock.ttf')
}

body {
    background-image: url(dogmovies_img/0wanroom_bg.png);
    background-position: center;
    background-repeat: repeat;
    background-attachment: fixed;
}

.app {
    background-color: white;
    width: 90%;
    max-width: 600px;
    margin: 100px auto 25px;
    border: 2px solid black;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 5px 5px pink;
}

.app h1 {
    font-size: 50px;
    font-family: filmotypehemlock;
    overflow:auto;
    padding-bottom: 20px;
    margin: 10px;
    margin-left:0;
}
.divider{
    display:flex;
    width: 550px;
}

.divider img{
    width:100%;
    height:100%;
    object-fit: cover;
}

.quiz {
    padding: 20px 0;
}
.quiz h2 {
        font-size: 20px;         
    }

.btn {
    background-color: white;
    font-size: 18px;
    width: 100%;
    max-width: 600px;
    border: 1px solid  #222; 
    padding: 10px;
    margin: 10px auto 0;
    text-align: left;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.03s;
}

.btn:hover:not([disabled]) {
    background: #222;
    color: #fff;
    
}

.btn:disabled{
    cursor: no-drop;
}

#next-btn{
    background: lightblue;
    width: 150px;
    border: o;
    padding: 10px;
    margin: 20px auto 0;
    border-radius: 8px;
    cursor: pointer;
    display:none;
}

.correct{
     background: #9aeabc;
}

.incorrect{
    background: #ff9393;
}

#footer{
    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;
    margin: 0 auto;
    width:200px;
    height: 45px;
    background-color: white;
    border-radius: 10px;
    border: 2px solid black;
}

#footer h2{
        display: inline;
        margin:10px;
    }