html,body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

body {
  flex: 1 0 auto;
}

header {
  background-color: white;
  padding: 1rem;
}

nav a {
  color: white;
  text-decoration: none;
}

.hero {
  background-color: #ee7f09;
  padding: 2rem;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 36px;
}

.hero p {
  font-size: 20px;
}

.tools {
  padding: 2rem;
}

.tool-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.tool {
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  color: #333;
  width: 100px; /*tamaño del botón*/
}

.tool:hover {
  transform: scale(1.1);
  background-color: #FFE4C4;  /* Cambia esto al color que prefieras */
}

footer {
  flex-shrink: 0;
  background-color: #ee7f09;
  color: white;
  padding: 1rem;
  text-align: center;
}

footer p {
   font-size: 15px;
}

.tamano{
  height: 50px;
  width: 50px; /*tamaño del icono del botón*/
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #fefefe;
  padding: 20px;
  border: 1px solid #888;
  width: 30%;
}