/* Estilos generales para la aplicación */
body {
  font-family: Arial, sans-serif;
  background-color: #e5e5e5;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  box-sizing: border-box;
}

.container {
  /* background-color: #404040; */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

h1 {
  font-size: 32px;
  
}

h3 {
  font-size: 18px;
  margin-bottom: 30px;
  color: #666;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.input-group input[type="text"] {
  width: 100%;
  padding: 10px;
  font-size: 28px;
  border: 2px solid #007bff;
  border-radius: 10px;
  box-sizing: border-box;
}

.speedOfSound p, {
  font-size: 18px;
  margin: 10px 0;
}

.result h2 {
  /* color: #007bff; */
  font-size: 28px;
  margin: 30px 0;
}

.highlight {
  color: #007bff;
}

/* Estilos específicos para móviles */
@media (max-width: 600px) {
  .container {
    padding: 15px;
    max-width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  h1 {
    font-size: 30px;
    margin-bottom: 0;
  }

  h3 {
    font-size: 16px;
  }

  .input-group input[type="text"] {
    font-size: 26px;
    padding: 8px;
    width: 80%;
  }

  /* .speedOfSound p, .result h2 {
    font-size: 16px;
  } */
}
