html, body {
    height: 100%;
    font-family: "Noto Sans"
}

body {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: sans-serif;
    background-color: lightblue;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 97%;
}

main {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    width: 90%;
}

#genreForm {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#moviePoster {
    max-width: 20rem;
    height: auto;
}

#inputz {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#outputz {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 60%;
}

#outputz div {
    width: 45%;
}

#outputz li {
    font-size: 18px;
    padding-top: 0.5rem;
}

h3 {
    margin-left: 1rem;
    width: 30%;
}

footer {
    text-align: center;
    margin-top: auto;
}