@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

body {
    background-color: #6D1A36;
}

h3, p{
    margin: 0;
    padding: 0;
}

h3 {
    font-size: 1.5rem;
}

#web-title {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: "Raleway";
    border-bottom: 1px solid #453750;
    background: linear-gradient(#73648A, #A393BF);
    
}

#reseñas-ul {
    width: 20rem;
    background: linear-gradient(#CEA0AE, #D5B0AC);
    float: left;
}

#reseñas-ul ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#reseñas-ul ul a{
    list-style: none;
    text-decoration: none;
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
    color: black;
}

.movie-link {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Raleway";
    padding: 10px;
    height: 2rem;
    border-bottom: 0.5px solid black;
    border-right: 0.5px solid black;
    transition: 100ms;
}

.first-child {
    background-color: #A663CC;
    font-size: 1.5rem;
    font-family: "Raleway";
    text-align: center;
    border-bottom: 1px solid black;
    border-right: 1px solid black;
}

.movie-link:hover {
    background-color: #6D1A36;
    color: white;
}

#movies-posters-image {
    display: grid;
    padding: 20px;
    gap: 20px;
    grid-template-columns: 200px 200px 200px 200px 200px 200px 200px;
    grid-template-rows: 200px 200px 200px 200px 200px;
}

#movies-posters-image div {
    background-size: 200px 200px;
}

.overlay-movie {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.7);
    font-family: "Raleway";
    transition: opacity 250ms;
    color: white;
}

#movies-posters-image div:hover .overlay-movie {
    opacity: 1;
}
