body {
    font-family: 'MS Gothic', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
  }

  header {
    background-color: #ff6a00;
    color: #fff;
    padding: 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-width: 50px;
    margin-right: 10px;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-right: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-right: 10px; /* Añadimos un pequeño margen para separar del último elemento */
}

.bar {
    height: 5px;
    width: 35px;
    background-color: #fff;
    margin: 6px 0;
}

/* Agregamos estilos para pantallas pequeñas */
@media only screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 110px;
        left: 0;
        width: 100%;
        background-color: #ff6a00;
        text-align: center;
        z-index: 1; /* Añadimos un índice z para que esté encima del contenido */
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        margin: 0;
        padding: 15px 0;
    }

    .burger-menu {
        display: flex;
    }
}

#content {
    max-width: 600px;
    margin: 20px auto;
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
}
  
  .contact-container {
    text-align: center;
    margin-top: 150px;
  }
  
  .social-icons {
    margin-top: 20px;
  }
  
  .social-icons a {
    margin: 0 10px;
    display: inline-block;
    transition: transform 0.3s ease-in-out;
  }
  
  .social-icons a img {
    width: 90px; /* Ajusta el tamaño deseado */
    height: auto;
  }
  
  .social-icons a:hover {
    transform: scale(1.2);
  }
  
  h1 {
    color: #fff;
  }

  footer {
    background-color: #ff6a00;
    color: #fff;
    text-align: center;
    padding: 1em;
    position: fixed;
    width: 100%;
    bottom: 0;
}


  