*{
    color: #000000;
    font-family: sans-serif;
    text-align: center;
    margin: 10;
    padding: 10;
    box-sizing: border-box;
}

/* Ajusta el tamaño de fuente para dispositivos móviles */
@media (max-width: 768px) {
    * {
        font-size: 16px;
    }
}

header, section ,article ,footer {
    padding: 15px;
}
header{
    background-color: #81eeee;
}

article{
    background-color: #fcfcfce5;
    margin: 10px;
    border-top-left-radius: 20px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 25px;
}
footer{
    background-color: #81eeee;
    display: flex;
}
.box {
    background-color: #9af87e;
    font-size: 14px; /* Ajusta el tamaño de fuente para dispositivos móviles */
    padding: 5px;
    border: 4px dashed black;
    border-radius: 4px;
    
}
  
.piece {
    width: 50px; /* Reduce el tamaño de las piezas para dispositivos móviles */
    height: 50px;
    position: absolute;
    border: 2px solid black;

  }


.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.genially {
    width: 100%;
    height: 500px; /* Reduce la altura para dispositivos móviles */
    margin: 0 auto;
}
body {
    background-image: url('fondo.jpeg');

  }

h2{
    background-color: #71ffdc;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
#programadores{
    font-size: 14px; /* Ajusta el tamaño de fuente para dispositivos móviles */
}
figure img{
    margin: 20px; /* Reduce el margen para dispositivos móviles */
    border-top-left-radius: 20px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 25px;
    /* Aplicar las reglas a la imagen dentro de figure */
    max-width: 100%; 
    height: auto; 
    
}
form{
    padding: 50px 55px;
    border-radius: 20px;
    text-align: center;
    width: 340px;
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
}
.imput-group{
    display: flex;
    flex-direction: column;
    text-align: left;
}
label{
    color: black;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}
input, textarea{
    padding: 17px;
    border-radius: 25px;
    margin-bottom: 20px;
    border: 2px solid  #3bfaca;
    color: black;
    outline: none;

}
input::placeholder,textarea::placeholder{
    color: #b5cab6;

}
.form-txt{
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    text-align: center;
}
.form-txt a{
    color: rgb(0, 0, 0);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}
.boton{
    font-size: 16px;
    color: rgb(0, 0, 0);
    border: 0;
    border-radius: 25px;
    background-color: #3bfaca;
    box-shadow: 0 0 20px rgba(0, 2, 0, 0.4);
    cursor: pointer;
}

.btn:hover{
    background-color: #040a04;
}




/* Ajusta el diseño para dispositivos móviles */
@media (max-width: 300px) {
  .piece {
    width: 30px;
    height: 30px;
  }
  .genially {
    height: 300px;
  }
  figure {
    margin: 10px;
  }
  form{
    padding: 30px 30px;
    width: 100%;
   
  }
  input{
    padding: 10px;
  }
}