@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html{
    font-family: Poppins, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
}
*{
   margin: 0;
   padding: 0;
}

nav{
   
    width:100%;
}

nav ul{
    display:flex;
    align-items: center;
    list-style-type: none;
    gap: 1em;
}
nav li:first-child{
    margin:0 auto 0 0;
    font-family: Merriweather, Poppins, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    font-size: 3vw;
}
nav a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 2vw;
}
nav a:hover{
    text-decoration: underline;
}
.flex-container-center{
 display: flex;
}
.img{
margin-right: 1vw;
 background: url(/public/images/centropictures/logo\ centro\ \(1\).png)no-repeat left;
 background-size: 100% 100%;
 width: 40vw;
border-radius: 10px;

}
.text-container-center{
    width: 100%;
    padding-top: 6vw;
    padding-right: 20vw;
}
h1{
    font-size: 1.6vw;
}
.flex-container-center p{
    margin: .75em 0 1em 0;
    font-size: 1vw;
}
.social-center{
position: block;


    gap:1vw;
}

.cta-button-center{
  
    display: inline-block;
    text-decoration: none;
    color: white;
    background-color: var(--primary-color);
   
   
    border-radius: .5em;
   
   
    margin-bottom: 1vw;
    width: 10vw;
    height: 5vw;
    
}
#facebook-center{
    background: url(/public/images/socialimages/linkfacebook.png)no-repeat center;
    background-size: 40%;
    background-color: var(--primary-color);
}
#instagram-center{
    background: url(/public/images/socialimages/linkistagram.png)no-repeat center;
    background-size: 60%;
     background-color: var(--secondary-color);
}
#youtube-center{
    background: url(/public/images/socialimages/youtube.png)no-repeat center;
    background-size: 60%;
    background-color: var(--primary-color);
}