@media screen and (max-width: 900px) {

.container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 50px 1fr 40px;
  min-height: 100vh;
  grid-template-areas:
    "head"
    "content"
    "foot";
}


.head h1 {
  font-size: 1.8rem;

}

.head .menu {
  display: flex;
  justify-content: space-evenly;
  font-size: 0.45rem;
  gap: 0.5rem;

  & a {

    padding: 2.6px 5px;
  }

}

#welcome {
  font-size: 2rem;
}

main .paragraph {
  max-width: 15rem;
  padding: 1rem;
  font-size: 0.8rem;
}

main .title {
  font-size: 1rem;
  margin: 1rem 0;
}


main .principal .form {
  max-width: 15rem;
  padding: 0.5rem;

}

.principal .form-group {
  margin-bottom: 0.93rem;
  border-radius: 5px;
  padding: 0.6rem;
  margin: 0;

  label {
    font-size: 0.6rem;
  }

  input {
    margin-top: 0.31rem;
    padding: 0.5rem;

  }
}

.form-group.weather-label {
  margin-bottom: 0;

}

.weather-group {
  margin-bottom: 0;
  
}

.form-group .options label {
  margin-right: 0.6rem;
  font-weight: normal;
}

.form-group .options input {
  margin-right: 0.31rem;
}

.form-group textarea {
 
  margin-top: 0.3rem;
  height: 5rem;
  padding: 0.3rem;
 }

 .btn-submit {
  color: white;
  padding: 0.5rem;
  font-size: 0.7rem;
}


.table-logs{

  font-size: 0.4rem;

}

.table-logs td.tasks {
  max-width: 8rem;

}

.table-logs td.accion {
  text-align: center;

  .editar {
    display: inline;


    & button {
      border-radius: 2px;
      padding: 1px;
      font-size: 0.4rem;

    }


  }

  .eliminar {
    display: inline;

    & button {
      border-radius: 2px; 
      padding: 1px;
      font-size: 0.4rem;

    }


  }

}

.pie p {
  
  font-size: 0.4rem;
  font-weight: bold;
  justify-content: center;
  margin-bottom: 0.31rem;
}

.pie .images {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
}

.pie .images img {
  width: 0.8rem;
  height: 0.8rem;
}


.success {
  margin: 1rem auto;
  font-size: 0.8rem;
}






}













@media screen and (min-width: 901px) {
  .table-logs tbody tr:hover {
  background-color: rgb(66, 66, 66);
  color: white;
}
}