    body {
      margin: 0;
      background-color: #f2f2f2;
      background-image:url(../img/construccion.svg);
      background-size: cover;
      background-position: center;
      font-family: 'Manrope', sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      height: 100vh;
      text-align: center;
      line-height: 1.5;
    }
    .logo {
      width: 250px;
      margin-bottom: 20px;
    }
    .texto-principal {
      font-size: 60px;
      font-weight: 700;
      color: #0033A0; /* Azul del logo */
      margin: 10px 0;
      line-height: 1.2;
    }
    .texto-secundario {
      color: #00BFA6; /* Verde del logo */
      display: block;
      line-height: 1;
    }
    .descripcion {
      font-size: 16px;
      color: #333;
      margin: 10px 0;
    }
    .contacto {
      font-size: 16px;
      color: #333;
      margin: 10px 0;
    }
    .email {
      font-size: 16px;
      color: #0033A0;
      font-weight: 700;
      text-decoration: none;
    }
    .email:hover{
      color: #00BFA6;
    }
    .instagram {
      width: 40px;
      margin-top: 20px;
      background: #00BFA6;
      border-radius: 100px;
    }
    .instagram:hover{
        background: #0033A0;
    }
    .linea{
        background-color: #00BFA6;
        margin: 20px 0;
        height: 5px;
        width: 50px;
        border-radius: 50px;
    }

    //**MQ**//
    @media (max-width: 767px) {
    .texto-principal {
      font-size: 48pt; 
    }
    }