*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #051215;
}


.titulo{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: blanchedalmond;
    font-size: 2.5rem;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 35px;
    position: absolute;
    text-align: center;
    margin-bottom: 700px;
}


.container {
    width: 100%;
    max-width: 800px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1.25rem;
    transition: all 400ms;
}

.card {
    flex: 1;
    height: 100%;
    transition: all 400ms;
    cursor: pointer;
}

.card>img {
    display: block;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.card:nth-child(odd) {
    translate: 0 -20px;
}

.card:nth-child(even) {
    translate: 0 20px;
}

.container:hover .card:not(:hover) {
    filter: grayscale(100%);
}

.card:hover {
    flex: 3;
}