body{
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    --bg-color: #afacac;

}

main{
    width: 100%;
    margin: auto;
    max-width: 1200px;
}

.container {
    margin: 20px;
}
   



.h2_container{
    
}

h3{
    margin: 10px;
    text-align: center;
    font-size: 30px;
    font-family: sans-serif;
}
.h2_aerografia{
    
    margin: 20px;
    font-family: sans-serif;
    font-size: 100px;
    line-height: ;
    text-align: center;

    /*para darle un fondo a las letras de imagen*/
    background-image:url(./imagenes/7.jpg);
    background-clip: text;
    color: transparent;
    background-size: contain;
    
}





.h2_container p{
    margin: 20px;
    margin-bottom: 20px;
    text-align: justify;
    font-family: sans-serif;
    text-wrap: pretty;
    
}


.img_container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    
    gap: 8px;
    
}

.imagen {
    height: 200px;
    width: 200px;
    background-size: cover;
    
    border-radius: 20%;
    transition: 0.8s;
}

.imagen:hover{
    transform: scale(1.5);
    justify-content: center;
    align-items: center;
   
    border: 8px solid #444343;
}


.container_video{
    margin: 50px;
    display: flex;
    justify-content: center;
}


@media screen and (max-width:650px){

    .h2_aerografia{
        font-size: 60px;
    }

    
}

@media screen and (max-width:450px){

    .h2_aerografia{
        font-size: 40px;
    }

    
}

