#searchForm {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 2% 0 2% 0;

}

input {
    border-radius: 10px 0px 0px 10px;
    background-color: white;
    border: 1px solid white;
}

#keyword {
    width: 10%;
}

#search-btn {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: transparent;
    cursor: pointer;
    outline: none;
    border: 1px solid white;
    color: white;
}

#search-btn:hover {
    background-color: rgb(0, 110, 255);
    color: white;
}

#typeOfSearch {
    margin-left: 1%;
}

div.movie {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 10px;
}

.container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

#container {
    display: flex;
    flex-direction: column;
    background-color: black;
    width: 100%;
    height: 100vh;
}