.movie-details-page { display: flex; flex-direction: row; padding: 50px; .poster { text-align: center; .tagline { padding: 20px; } } .details { display: flex; flex-direction: column; gap: 25px; justify-content: flex-start; padding: 20px; line-height: 1.2rem; .title { font-size: 2.4rem; font-weight: 700; margin-top: 15px; } .overview { } .genres { li { display: inline; max-width: 100px; margin: 10px; padding: 10px; color: black; background-color: #ffcb2b; border-radius: 3px; } } .toolbar { margin-top: 40px; .btn-back { padding: 15px; margin-right: 10px; &:hover { color: #ffcb2b; } } .btn-remove { font-size: 0.8rem; padding: 10px; border: 1px; background-color: rgb(150, 8, 8); } } } }