/* stylelint-disable */
body {body {
  background: linear-gradient(to left, aqua, rgb(0, 128, 255));
  display: flex;               
  justify-content: center;     
  align-items: center;         
  height: 100vh;               
  margin: 0;
  text-align: center;
}

.main {
  width: 500px;
  text-align: center;
}

  background: linear-gradient(to left, aqua, rgb(0, 128, 255));
  line-height: 0.5;
  display: flex;               /* Usamos flexbox */
  justify-content: center;     /* Centrado horizontal */
  align-items: center;         /* Centrado vertical */
  height: 100vh;               /* Ocupa toda la ventana */
  margin: 0;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main {
  width: 500px;
  text-align: center;
}

.card {
  box-shadow: 0 4px 8px 0;
  transition: 0.4s;
  width: 300px;
  text-align: center;
  font-size: 16px;
  margin: 10px;
  background: linear-gradient(to left, aqua, rgb(0, 128, 255));         /* Fondo blanco para contraste */
  border-radius: 8px;

}

h1 {
  font-size: 30px;
  color: antiquewhite;
  text-align: center;
}

.values {
  width: 240px;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 5px;
  padding: 10px 0;
}

li {
  list-style-type: none;
}

ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: flex-start;
}

.buttons {
  border: 3px solid;
  background-color: rgb(40, 211, 40);
  color: white;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  width: 80px;
  height: 40px;
  margin-left: 40px;
}

label {
  font-size: 20px;
}
