@import url('https://fonts.googleapis.com/css2?family=Kdam+Thmor+Pro&display=swap');

* {
    margin: 0;
    padding: 0;
    background-color: black;
    list-style: none;
    text-decoration: none;
}

header {
    height: 90px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

nav {
    width: 60%;
}

ul {
    display: flex;
    width: 98%;
    justify-content: space-between;
}

li {
    list-style: none;
    color: aliceblue;
    font-size: 19px;
    cursor: pointer;
    transition: .5s;
    font-family: 'Kdam Thmor Pro', sans-serif;
}

li:hover {
    color: #D21617;
}

#logo {
    width: 180px;
    height: auto;
}

#banner-fotos {
    background-image: url('./Banner_BatmanandCatwoman.jpg');
    background-position: 70% 50%;
    background-size: cover;
    width: 100%;
    height: 600px;
}

.title-pictures {
    width: 100%;
    display: flex;
    justify-content: center;
    color: #fff;
    font-size: 25px;
    font-family: 'Kdam Thmor Pro', sans-serif;
    margin-top: 50px;
}

.picture-cards-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.cards-content {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    row-gap: 20px;
    column-gap: 40px;
}

.card {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: 50% 50%;
    border-radius: 5px;
    cursor: pointer;
    transition: 1s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 0 20px 10px;
    color: #fff;
    font-size: 17px;
    font-family: 'Kdam Thmor Pro', sans-serif;
}

.card:hover {
    transform: scale(1.02);
}

.banner-1 {
    background-image: url('https://img.odcdn.com.br/cdn-cgi/image/width=1200,height=1200,fit=cover/wp-content/uploads/2022/01/The-Batman.jpg');
}

.banner-2 {
    background-image: url('https://i.pinimg.com/1200x/ce/cb/c7/cecbc7a81bc3572e7bc8d0ad2d16e079.jpg');
}

.banner-3 {
    background-image: url('https://preview.redd.it/l617izc155sb1.png?auto=webp&s=9f76d9a04ed15639f5fea3ee0c1d66f793aabfc4');
    background-position: 15% 15%;
}

.banner-4 {
    background-image: url('https://cdn.vox-cdn.com/thumbor/JFfwqzAKzSOBIV78S1JHWfSF9To=/0x0:6208x8280/1200x0/filters:focal(0x0:6208x8280):no_upscale()/cdn.vox-cdn.com/uploads/chorus_asset/file/23156547/rev_1_TBM_SS_PD_0340rv2_High_Res_JPEG.jpeg');
}

.banner-5 {
    background-image: url('https://assets.kompasiana.com/items/album/2023/04/13/penguin2-64382a74a7e0fa098a59ebf4.jpg?t=o&v=400');
}

.banner-6 {
    background-image: url('https://d2d7ho1ae66ldi.cloudfront.net/ArquivoNoticias/69fbe1c4-9efb-11ec-aa6e-9587410378a2/john-turturro.jpg');
}

.picture-cards-container2 {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.cards-content2 {
    width: 90%;
    display: grid;
    grid-template-columns: 1fr;
}

.card2 {
    width: 100%;
    height: 550px;
    background-size: cover;
    background-position: 50% 50%;
    border-radius: 5px;
    cursor: pointer;
    transition: 1s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 0 20px 10px;
    color: #fff;
    font-size: 17px;
    font-family: 'Kdam Thmor Pro', sans-serif;
}

.card2:hover {
    transform: scale(1.02);
}

.banner-7 {
    background-image: url('https://ovicio.com.br/wp-content/uploads/2022/02/20220216-20220216_184742.jpg');
}

footer {
    height: 300px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

span {
    color: #fff;
    font-family: 'Kdam Thmor Pro', sans-serif;
}

.footer-navigation {
    display: none;
}

.footer-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media(max-width: 768px){
    .footer-navigation {
        display: block;
        margin-top: 25px;
    }

    nav {
        display: none;
    }

    #banner-fotos {
        background-image: url('./Banner_CatWoman_fotos.jpg');
        background-position: 40%;
    }

    .cards-content {
        grid-template-columns: 1fr;
    }

    .card2 {
        background-position: 40%;
    }
}