*{
    margin: 0;
    padding: 0;
}

body{
    background-color: #ffe7c6;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

.text{
    text-align: center;
    font-weight: bold;
    font-size: 3rem;
    margin: 15px 0;
    color: #b72a06;
}

.main{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.character{
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    justify-content: center;
    align-items: center;
    border: 2px solid #ffa53d;
    margin: 2rem;
    padding: 1rem;
    border-radius: 4px;
    background-color: #fff6eb;
    transition: all 0.3s ease-in-out;
}

.character:hover{
    transform: scale(1.1);
    background-color: #fed7aa;
}

.name:hover{
    cursor: pointer;
    transform: scale(1.1);
    color: #f96707;
}

.image{
    width: 250px;
    height: 400px;
    border-radius: 2px;
}

.footer{
    width: 100%;
    text-align: center;
    background-color: #ff8e20;
    padding: 1rem;
    margin-top: 20px;
    bottom: 0;
}

.textFooter{
    font-weight: bolder;
    color: #fff6eb;
    transition: all 0.3 ease-in-out;
    cursor: context-menu;
}

.textFooter:hover{
    transform: scale(1.1);
    
}