body {
    background-color: #b44498;
    color: #efc8e2;
}

#appTitle {
    text-align: center;
    margin: 0 auto;
    display: block;
    font-family: 'Staatliches', sans-serif;
    font-size: 80px;
    color: white
}
select{
    font-size: 25px;
}
#genreForm, #playBtn {
    text-align: center;
    margin: 0 auto;
    display: block;
    font-family: 'Fredoka One', sans-serif;
}

#movieInfo {
    width: 65%;
    margin: 32px auto;
}

#movieInfo:after {
    content: "";
    display: table;
    clear: both;
}

#moviePoster, #movieText {
    width: 50%;
    float: left;
}

img#moviePoster {
    width: 100%;
    height: auto;
    display: block;
    margin: auto;
}

#movieText {
    font-family: 'Questrial';
    color: #FEFBEA;
    line-height: 1.25;
}

#movieTitle, #movieOverview {
    padding: 32px;
}

#playBtn {
    margin-top: 20px;
    font-size: 25px;
    padding: 7px 10px;
    border-radius: 10px;
    border-style: none;
    background-color: #B97828;
    color: #fdc238;
    cursor: pointer;
}

label {
    display: block;
    font-size: 35px;
    margin-bottom: 5px;
}

select {
    width: 200px;
    height: auto;
}

#likeOrDislikeBtns {
    text-align: center;
    margin: 0 auto;
}

#likeBtn, #dislikeBtn {
    padding: 15px 25px;
    font-size: 25px;
    border-radius: 12px;
    border-style: none;
    cursor: pointer;
}

#likeBtn {
    background-color: #249e57;
    color: darkgreen;
}

#dislikeBtn {
    background-color: #c74a4a;
    color: #910000;
}

/* Media query para pantallas pequeñas */
@media (max-width: 768px) {
    #moviePoster {
        float: none;
        width: 100%;
    }

    #movieText {
        float: none;
        width: 100%;
    }
}
