html{
    margin: 0;
    padding: 0;
    overflow-x: hidden;

}
body {
    background-color:#391F67;
    text-align: center;
    color:#fff;
    padding-top:10em;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

  }
  h1{
    font-weight: 200;
    font-size: 3.5rem;
  }
  .principal{
    padding: 50px;
  }
  .logo{
    width: 30%;
  }
  .social{
    display: flex;
    justify-content: center;
    margin: 20px 0;
    align-items: center;
  }
  .social > a {
    margin: 0 20px;
  }

   .social-icons > a {
    margin: 0 20px;
  }
  ion-icon{
    font-size: 40px;
  }
  * { color:#F27200; text-decoration: none;}

  @media screen and (max-width:600px) {
    h1{
        font-size: 2rem;
    }
    .social{
        flex-direction: column;
        justify-content:space-between;
    }
    .social > a {
    margin: 10px 20px;
  }
  .social-icons{
      margin-top:10px;
  }
  }