@font-face {
    font-family: 'montserrat';
    font-stretch: 30%; /* Note that font-stretch is a % of normal width */
    font-style: normal; /* See note below */
    font-weight: 12;
    src: url(https://fonts.googleapis.com/css2?family=Oswald:wght@284&display=swap) format('woff2');
  }
body{

    background-image: url("../../img/country_background.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment:fixed;
    margin:0;
    padding:0;
    height:100dvh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    font-family: montserrat;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent 80%, transparent 80%, rgba(0, 0, 0, 0.8));
    pointer-events: none; /* Permite que el contenido debajo sea interactivo */
    z-index: -1; /* Sitúa el overlay encima del fondo */
}

/*Header*/
.logo{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 0;
}

.logo-img img{
    max-width:200px;
    height: auto;  
}

/*Footer*/
.info{
   display:flex;
   justify-content:space-between;
   height:auto;
   width:100%;
   margin-bottom: 5px;
}
.info img{
    width: 20px;  
    height: auto;
    padding-inline: 5px;
} 

.info-phrase{ 
    display: flex;   
    justify-content: center;
    align-items: center;
    margin-left: 50px;    
    color:aliceblue;
    font-size: 25px;
    font-style: italic;
    font-weight: 500;    
}

.info-social-media{
    margin-top:0px;
    font-size:0.9em;   
    color:aliceblue;
    font-size: 15px;
    font-weight: 500;
}

.info-social-media p {
    display: flex;
    justify-content: center;
}

.info-social-media-icons{
    display: flex;
    align-items: baseline;
    max-width:100%;
    text-align:right;
    margin-right: 50px;
    color:aliceblue;    
    
}
.info-social-media-cellphone {
    display: flex;
    align-items: center; /* Alinea verticalmente los elementos */
    margin-left: 65px;
    margin-top: -20px; /* Reduce el espacio entre los dos grupos */
}
.info-social-media-cellphone a{
    display: block;
    margin:0px;
    
}

