.corpo{
    display: flex;
    flex-direction: column;
    margin-bottom: 70px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(110, 110, 110, 0.1);
    border-radius: 20px;
    margin-top: 70px;
    align-items: center;
    animation: sfondo 1.5s ease-in both;
}

.corpo h3, .corpo p{
    animation: sfondo 2s ease-in 0.5s both;

}

.corpo>h3{
    color: rgb(155, 0, 0);
    text-align: center;
    font-size: 70px;
    margin-top: 30px;
    margin-bottom: 60px;
    margin-left: 20px;
    margin-right: 20px;
}

.corpo p{
    color: white;
    width: 40%;
}

.corpo img{
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
}

figure{
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 50px;
    animation: sfondo 2s ease-in 0.5s both;
}

figcaption{
    color: white;
    text-align: center;
    margin-top: 10px;
    
    font-size: 20px;
}

.sinistra_a, .destra_a{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    min-width: 80%;
    text-align: justify;
}

.combattimento{
    width: 500px;
    height: 650px;
    margin-left: auto;
    margin-right: auto;
    
}

.armi{
    width: 500px;
    height: 350px;
    margin-left: auto;
    margin-right: auto;
    
}

.sinistra_a>p, .destra_a>p{
    border-radius: 20px;
    font-size: 25px;
    min-width: 50%;
    margin-left: auto;
    margin-right: auto;
   
}


@keyframes sfondo {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
    
}