html , body{
    height: 100%;
    margin-bottom: 130px;
}


body {
    background-color: rgb(49, 36, 97);
    margin: 0;
    padding: 50px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.main-title {
    color: #80a6a6;
    text-shadow: 2px 2px 3px rgba(135, 135, 118, 0.7);
}

.list {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    justify-content: center;
    gap: 16px;
    width: 90%;
    max-width: 960px;
}

.list-item {
    background-color: aliceblue;
    flex-basis: 280px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    background-image: url(imagens/thumb02.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
}

.list-item__name {
    margin: 0;
    font-size: 24px;
    color: rgb(89, 118, 186);
}

.list-item_imagem img{
    border-radius: 50%;
    width: 80px;
    margin-top: 120px;
}

.list-item__action {
    background-color: #ccc;
    padding: 16px;
    display: flex;
    justify-content: space-evenly;
    gap: 16px;
}