@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap");

body {
    font-family: 'Poppins', sans-serif;
    background-image: url('../images/fondo.jpg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    height: 90vh;
   
}

* {
    box-sizing: border-box;
  }
  
  /* Create two equal columns that floats next to each other */
  .column {
    float: left;
    width: 50%;
    padding: 40px 20px;
   
  }
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }


/********************************************************************************************/

.contenido{
    margin-top: 30px;
    text-align: center;
}

h1 {
    font-size: 50px;
    font-weight: bold;
    color: #005eb2;
}

h2 {
    font-size: 15pt;
    font-weight: 400;
    color: #005eb2;
}
h3 {
    font-size: 54px;
    font-weight: bold;
    color: #a2a2a2;
    margin-top: 70px;
}

header{ margin: 0 auto;}
.logo {
    width: 40%;
}


/* Media Queries */
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */


@media (max-width: 768px) {
    body {
        background-image: none;
    }
    h1, h2, h3{text-align: center;}
    h1 {
        font-size: 40px;
        font-weight: bold;

    }
    
    h2 {
        font-size: 25px;
        font-weight: 400;
 
    }
    h3 {
        font-size: 30px;
        margin-top: 50px;
    }

    .column {
        width: 100%;
  
      }
      .column1{  height:400px;}
    .fondo {
        background-image: url('../images/fondo-2.jpg');
        background-repeat: no-repeat;
        background-position: right;
        background-size: contain;
        height: 100vh;
    }


    .logo {
        position: relative;
        display: block;
        margin: 0 auto;
        width: 70%;
    }


}