*{
    margin: 0;
}
html, body{
    min-height: 100vh;
}
body{
    display: flex;
justify-content: center;
}

.main{
    max-width: 1200px;
    background-image: url('./img/panal-8.png');
    background-repeat: no-repeat;
    width: 100%;
}
.logo{
    display: flex;
    justify-content: flex-end;
}

.rrss{
    display: flex;
gap: 2rem;
}

.cintillo{
    width: 100%;
    margin: 1rem 0;
    display: grid;
    justify-content: space-between;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 30px;
}

.cintillo  >img{
    height: 50px;
}

.container{
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}



@media only screen and (max-width: 600px) {
    .logo img{
        height: 100px;
    }

    .cintillo > img{
        height: 25px;
    }

    .rrss img {
        height: 75px;
    }

    .cites img {
        height: 100px;
    }

}