body {
    margin: 0px;
    padding: 0px;
    font-family: Arial, sans-serif;
}
.head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    width: 100%;
    height: 50px;
}
.title {
    font-size: 10px;
    font-weight: bold;
    color: #ff0000;
    padding-left: 15px;
}
.tienIch {
    display: flex;
    align-items: center;
    width: 20%;
    justify-content: space-between;
    padding-right: 15px;
}
.menu {
    padding: 10px;
}
a {
    color: #ffffff;
     text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}
a:hover {
    color: #005eff;
}
.banner {
    width: 100%;
    height: 200px;
    background-image: url(../../images/movies/movie-banner.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    color: #ffffff;
    padding: 15px;
    text-shadow: 1px 1px 2px #000000;
}
.tag {
    display: block;
    width: 100%;
    background-color: #000000;
}
.tagTitle {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    padding: 15px;
    text-shadow: 1px 1px 2px #3c3c3c;
}
.tagContent {
    display: flex;
    padding: 10px;
    width: 100%;
    height: 400px;
}
.movie {
    width: 15%;
    height: 100%;
    margin-right: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
}
img {
    width: 100%;
    height: 80%;
}
p {
    height: 20%;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
}
img:hover {
    transform: scale(1.1);
    box-shadow: 1px 1px 10px #4e4d4d;
}
p:hover {
    color: #005eff;
    transform: translateY(-5px);
}