﻿#movie-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.movie-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.bookSection {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#lyrics-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.movie {
    min-width: 300px;
    max-width: 300px;
    margin: 1rem;
    background-color: var(--secondary-color);
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}

.movie-box {
    min-width: 485px;
    max-width: 800px;
    margin: 1rem;
/*    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);*/
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}

.movie img {
    width: 100%;
}

.lyrics {
    width: 300px;
    margin: 1rem;
/*    background-color: #eee;*/
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}
.box-shadow-unset{
    box-shadow:unset;
}

    .lyrics img {
        width: 100%;
    }

.movie-info {
    color: #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem 1rem;
    letter-spacing: 0.5px;
}

    .movie-info h3 {
        margin-top: 0;
    }

    .movie-info span {
        background-color: var(--primary-color);
        padding: 0.25rem 0.5rem;
        border-radius: 3px;
    }

        .movie-info span.green {
            color: lightgreen;
        }

        .movie-info span.orange {
            color: orange;
        }

        .movie-info span.red {
            color: red;
        }

.overview {
    background-color: #fff;
    padding: 2.5rem;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    max-height: 100%;
    transform: translateY(101%);
    overflow-y: auto;
    transition: transform 0.3s ease-in;
}

.movie:hover .overview {
    transform: translateY(0);
}

.lyrics:hover .overview {
    transform: translateY(0);
}

:root {
    --primary-color: #22254b;
    --secondary-color: #373b69;
}

* {
    box-sizing: border-box;
}
