@keyframes wobble{
    0% {transform: rotate(-30deg);}
    100% {transform: rotate(30deg);}
}
.Intro{
    text-align: center;
    font-size: 20px;
    padding: 50px;
    border: 2px solid black;
    border-radius: 10px;
    height: auto;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    img{
        width: 60%;
        height: auto;
    }

}
.animated1{
    animation: wobble 1s ease-in-out infinite alternate;
    margin-top: 5cm;
    margin-bottom: 5cm;
    height: auto;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    img{
        width: 80%;
        height: 60%;
    }
}
.specifications{
    padding: 50px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    border: 2px solid black;
    border-radius: 10px;
    height: auto;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.ammo-type{
    display: grid;
    grid-template-columns: auto auto;
    gap: 20px;
    justify-content: center;
    border: 2px solid black;
    border-radius: 10px;
    height: auto;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    img{
        width: 60%;
        height: auto;
    }
    
}
body{
    background-image: linear-gradient(45deg, #ff5b32, #feb47b); ;
    text-align: center;
    align-items: center;
}