body {
    margin: 0;
    padding: 0;
    background-image: linear-gradient(120deg, #dbe0f5 0%, #cbd2f0 100%);
    /* background: linear-gradient(120deg, rgba(50, 55, 110, 0.95), rgba(140, 160, 230, 0.95)); */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 99vh;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #171a45;
    text-align: center;
  }
  
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    
  }
  
.logo {
    max-width: 320px;
    height: auto;
    margin-bottom: 12px;
  }
  
.contacto,
.email {
    margin: 5px 0;
    font-size: 1.2rem;
  }

  a:link {
    color: #171a45;
    background-color: transparent;
    text-decoration: none;
  }
  
  a:hover {
    color: #9398db;
    background-color: transparent;
    text-decoration: none;
  }
  
  a:active {
    color: #a2a6e0;
    background-color: transparent;
    text-decoration: none;
  }