/* RESET CSS */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: rgb(255, 207, 130);
    padding: 40px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}



.Personagens-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;

}

.Personagens-container a {
    flex: 0 1 calc(33.33% - 20px); 
    text-align: center;
}

    

.Personagens-container img{
    width: 100%;
    height: auto;
    transition: transform 1s;
    display: block;
    border-radius: 10px;
}


img:hover{
    transform: scale(1.1);

}

h1{
    color: brown;
    text-align: center;
    margin-bottom: 30px;
}
h2{
    text-align: center;
    margin-bottom: 30px;
}

.card {
    background-color: #3e2c13;
    border-radius: 15px;
    padding: 15px;
    flex: 0 1 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
    text-align: center;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 3px solid rgb(245, 253, 95);
    box-sizing: border-box;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 10px;
    display: block;
    margin-bottom: 10px;
}

.card span {
    color: #ffffff;
    font-weight: bold;
    display: block;
}

.galeria-wrapper {
    background-color: #fff8f5;
    padding: 40px;
    border-radius: 20px;
    max-width: 1200px;
    max-height: max-content;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.zoom{
    display: flex;
    justify-content: center;
    transform: scale(1.2);
    transform-origin: top center;
    width: 100%;
    overflow-x: auto;
}

.logo{
    width: 300px; 
    height: auto;

}


