*{
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background-color: #cccccc;
}

header{
    background-color: #ffffff;
    height: 16vh;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    padding: 10px;
}

header div{
    display: flex;
    flex-direction: row;
    align-items: center;
}

header div a{
    margin-right: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #000000;
}

.header_git img{
    height: 48px;
    width: 48px;
}

header div a span:hover{
    color: #3B99FC;
}

main{
    min-height: 75vh;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

section{
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container{
    padding: 10px;
    min-width: 100%;
    display: flex;
    flex-direction: row;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    
}

.card{
    width: 320px;
    height: 320px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 2px 2px 4px black;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    animation: go-back 1.5s;
}

.image-personagem{
    object-fit: cover;
    height: 200px;
    width: 120px;
}

.seta{
    border: none;
    background: none;
    cursor: pointer;
}

.seta img{
    height: 30px;
    width: 30px; 
    filter: drop-shadow(2px 5px 5px black);
}

.div-setas button{
    margin: 10px;
}

footer{
    background-color: #ffffff;
}

footer ul{
    padding: 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}

.footer_icon img{
    height: 43px;
    width: 43px;
}

@keyframes go-back {
    from {
      transform: translateX(100px);
    }
    to {
      transform: translateX(0);
    }
  }