.list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    width: 90%;
    background-color: #000000;
    border-radius: 20px;
}

.grid a:hover {
    text-decoration: none;
}

.grid a:hover .title {
    color: #f5ea76;
    text-decoration: underline;
}

.grid div {
    border-radius: 10px;
    display: block;
    margin: 10px;
    height: auto;
    background-color: #060018;
    text-align: center;
}

.grid .poster {
    width: 90%;
    text-align: center;
}

.grid .poster img {
    width: 100%;
}

.grid .title {
    color: white;
    font-size: 20px;
    font-weight: 800;
}

.grid .genre {
    font-size: 14px;
    color: #565656;
}

.content-type {
    margin-left: 8%;
    height: calc(30vh - 20px);
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding-bottom: 20px;
}

.content-type h1 {
    color: #f5ea76;
    font-size: 34px;
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }
}