@font-face {
    font-family: 'Pixelify Sans';
    src: url('PixelifySans-VariableFont_wght.ttf');
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Pixelify Sans';
    
}
body {
    background-color: #000000;
    color: #e4e7fd;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    align-items: center;
    justify-items: center;
    height: 60vh;
    background-repeat:no-repeat;
    
  }

  body img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    grid-column: 1;
    grid-row: 1;
    opacity: .7;
    z-index: 0;
  }
  body h1 {
    margin: 0;
    /*padding-bottom: 6rem;*/
    grid-column: 1;
    grid-row: 1;
    z-index: 1;
    font-family: 'Teko', sans-serif;
    font-size: 13vw;
    text-transform: uppercase;
    animation: glow 2s ease-in-out infinite alternate;
    text-align: center;
  }
  body a {
    font-family: 'Teko', sans-serif;
    color: #e4e7fd;
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    justify-self: center;
    padding-bottom: 1rem;
  }
  @keyframes glow {
    from {
      text-shadow: 0 0 20px #e4e7fd;
    }
    to {
      text-shadow: 0 0 30px #e4e7fd, 0 0 10px #e4e7fd;
    }
  }
  #main-text {
    text-align: center;
  } 

  #sub-text {
      text-align: center;
      font-size: 2vw;
  }

  .button-container {
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .rounded-button {
      background-color: #0074d9;
      color: #fff;
      border: none;
      border-radius: 25px;
      padding: 10px 20px;
      margin: 15px; /* Espacio entre los botones */
      cursor: pointer;
      font-size: 20px;
  }
  .redes {
    min-width: 700px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  
  .redes a {
    text-decoration: none;
    font-size: 28px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #314652;
    color: #f1f1f1;
    border-radius: 50%;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .5);
    transition: all .4s ease-in-out;
  }
  
  .redes a:hover {
    transform: scale(1.2);
  }
 .footer{
  display: flex; /* Establece un contenedor flexible */
	flex-wrap: wrap;
	justify-content: center;
 }