* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    background-color: #E5E5E5;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
  }
  
  header {
    margin-top: 20px;
    display: flex;
    align-items: center;
    height: 80px;
    padding: 0 30px;
  }
  
  .logo {
    width: 10%;
  }
  
  .logo img {
    max-width: 100%;
    height: auto;
  }
  
  main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
  }
  
  .section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin-bottom: 30px;
    padding: 0 20px;
  }
  
  .text-area {
    width: 100%;
    height: 200px;
    padding: 10px;
    margin-bottom: 20px;
    border: 2px solid #000;
    border-radius: 10px;
    background-color: #fff;
    color: #000;
    font-size: 18px;
    resize: none;
  }
  
  .text-area::placeholder {
    color: #000;
    opacity: 0.5;
  }
  
  .botones {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
  
  .btn-encriptar,
  .btn-desencriptar {
    width: 48%;
    height: 60px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
  }
  
  .btn-encriptar {
    background-color: #0A3871;
  }
  
  .btn-desencriptar {
    background-color: #D8DFE8;
    color: #0A3871;
  }
  
  .btn-encriptar:hover,
  .btn-desencriptar:hover {
    background-color: #000;
  }
  
  .info {
    margin-bottom: 20px;
    font-size: 14px;
    color: #495057;
  }
  
  .resultado {
    background-image: url("./imagenes/Muñeco.png");
    background-repeat: no-repeat;
    image-rendering: auto ;
    width: 100%;
    height: 200px;
    padding: 10px;
    margin-bottom: 20px;
    border: 2px solid #000;
    border-radius: 10px;
    background-color: #fff;
    color: #000;
    font-size: 18px;
    resize: none;
  }
  
  .copiar-eliminar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-top: 35px;
  }
  
  .copiar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
  }
  
  .btn-copiar,
  .btn-eliminar {
    border: 1px solid #0A3871;
    width: 48%;
    height: 60px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: #0A3871;
}

.btn-copiar:hover, .btn-eliminar:hover{
    background-color: #D8DFE8;
    border: 1px solid #000;
    background-color: #0A3871;
    color: #fff;
}
  
footer {
  width: 100%;    background-color: #0A3871;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  font-size: 14px;
  margin-top: 18px;
}


  
  .redes-sociales {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
  }
  
  .redes-sociales {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .redes-sociales a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
    background-color: #0A3871;
    color: #0A3871;
    transition: all 0.3s ease;
    overflow: hidden;
  }
  
  .redes-sociales img {
    width: 100%;
    max-width: 40px;
    height: auto;
    object-fit: cover;
  }
  
  
  .redes-sociales a:hover {
    transform: scale(1.2);
  }
  
  .github,
  .facebook,
  .instagram,
  .linkedin {
    font-size: 18px;
  }
  
  .facebook{
    padding-left: 1px;
  }
  
  .autor{
    margin-top: 20px;
  }
  
  @media screen and (max-width: 768px) {
    .footer-content {
      flex-direction: column;
    }
  
    .redes-sociales {
      margin-top: 10px;
    }

    .autor{
        text-align: center;
        justify-content: center;
    }
  }
  
  