* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
    padding: 20px;
    background: center / cover url('./bg-movie.jpg');
    overflow-x: hidden;
}

h1 {
    color: white;
}

#search-container {
    max-width: fit-content;
}

img {
    max-width: 100%;
    max-height: 500px;
}

#movieInfo {
    background: linear-gradient(#000000, #8f8f8f);
}

.date,
.duration,
.wrapper-data span {
    color: rgb(204, 204, 204);
}

.genres {
    background-color: #ccccccc7;
}

small span {
    padding: 5px;
    margin: 5px 7px 5px 0px;
    background-color: #00000060;
    color: black;
    border: 2px solid rgba(0, 0, 0, 0.6);
    box-shadow: 0px 0px 5px #000000c0;
}

small span:last-child {
    margin-right: 0px;
}