@import url("./css/header.css");

article{
    width: 100%;
    height: 320px;    
}

.texto-main{
    text-align: center;
    margin: 30px 0;    
}
.texto-main>h1, .texto-main>h3{
    margin-bottom: 20px;
}
.texto-main>h1{
    font-weight: 700;
}
.texto-main>h3{
    font-weight: 400;
}
section{
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
    grid-template-rows: repeat(4,80px);
    gap: 10px;
}
section>div{
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -2px 2px 2px;      
    padding: 20px;    
}
section div a{
    text-decoration: none;
    text-transform: uppercasea;
    color: rgb(40, 40, 119);

}