*{
    margin: 0;
    padding: 0;
}

body{
    background-color: #1A3D64;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'Courier New', Courier, monospace;
}

h1 {
    text-align: center;
    margin-top: 30px;
}

.main_title{
    color: #F4F4F4;
}

.list{
    width: 80%;
    max-width: 90%; /* para que cada item não fique um do lado do outro na horizontal em um monitor maior */
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 15px;
}

.list-item{
    flex-basis: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;

    list-style-type: none;
    background-color: #E7F2EF;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .2);

    text-align: center;

    background-image: url(images/header.jpeg);
    background-size: 100%;
    background-repeat: no-repeat;

    padding: 15px;
    border-radius: 5px;
    height: 400px;
}

.list-item__icon img{
    width: 130px;
    border-radius: 50%;
    margin-top: 120px;
    margin-bottom: 10px;
    transform: transition 1s ease-in;
}

.list-item__icon img:hover{
    transform:scale(1.1)
}

.list-item__content{
    gap: 12px;
}

.list-item__name{
    font-size: 24px;
    color: #1A3D64;
    margin-bottom: 10px;
}

.list-item__movie{
    margin-bottom: 10px;
}

.list-item__actions{
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-evenly;

    padding: 16px;
    background-color: #8FABD4;

    margin-left: -15px; /* ocupando toda a esquerda */
    margin-right: -15px; /* ocupando toda a direita */
    margin-bottom: -15px; /* ocupando todo o final */
    margin-top: auto; /* empurrando para o final */
    align-self: stretch;
    border-radius: 0 0 5px 5px;
}

.list-item__actions img{
    width: 20px;
}

.list-item__actions img:hover{
    transform: scale(1.1); /* aumenta o tamanho da imagem ao passar o mouse */
}

.list-item__actions:hover{
    background-color: #4A70A9;
}