/* Maximum width */
@media (max-width: 600px) {
    body {
        flex-direction: column;
    }
}

body {
    height: auto;
    width: auto;
    display: flex;
    font-family: 'Poppins', sans-serif;
    background: rgb(220, 61, 170);
    background: linear-gradient(90deg, rgba(220, 61, 170, 1) 3%, rgba(196, 54, 177, 1) 32%, rgba(171, 47, 183, 1) 49%, rgba(145, 38, 189, 1) 74%);
}

header {
    display: flex;
    flex-direction: column;
    justify-content: left;
    padding: 10px;
    max-width: 350px;
}

.imgLogo {
    max-width: 300px;
    height: auto;
    justify-content: left;
}

#buttons {
    color: #f8f8f8;
    padding: 10px;
    margin-top: -7px;
    margin-left: 20px;
}

.btns {
    display: flex;
    width: 180px;
    height: 32px;
    color: white;
    font-size: 18px;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    border-color: white;
    margin-top: 10px;
    background-color: rgb(220, 61, 170);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.24);
}

.btns:hover:hover {
    background-color: rgb(86, 3, 99);
}


#peliculas {
    color: rgb(86, 3, 99);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style-type: none;
    margin-top: 5px;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

#directores {
    color: rgb(86, 3, 99);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style-type: none;
    margin-top: 5px;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

h1 {
    font-size: 20px;
}

h3 {
    color: #761cc3;
}

.imgMovie {
    width: 230px;
    height: 330px;
    border-radius: 30px;
    padding-bottom: 10px;

}

.imgDir {
    width: 230px;
    height: 300px;
    border-radius: 30px;
    padding-bottom: 10px;

}

.card {
    width: 230px;
    display: flex;
    flex-direction: column;
    margin: 10px;
    padding: 1em 1em 2em;
    align-content: center;
    text-align: center;
    border-radius: 30px;
    color: rgb(88, 87, 87);
    background: #e6d7f1;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12), 0 3px 5px rgba(0, 0, 0, 0.24);
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

#topBtn {
    display: none; 
    position: fixed;
    bottom: 20px; 
    right: 30px; 
    z-index: 99; 
    color: white; 
    cursor: pointer; 
    border: none; 
    outline: none; 
    padding: 15px;
    border-radius: 15px; 
    font-size: 20px; 
    background-color: rgb(4, 174, 196);;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.12), 0 2px 3px rgba(0, 0, 0, 0.24);
  }
  
  #topBtn:hover {
    background-color: #7e7e7e;
    ; 
  }