
.contenedor-principal {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.contenedor-general {
  display: flex;
  align-items: center;
  gap: 10px;
  
}

.formulario {
  max-width: 600px;
  width: 500px;
  margin: 20px 0 0 70px;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

form {
  display: grid;
  gap: 10px;
}

label {
  font-weight: bold;
}

input,
textarea {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}

.botones {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

input[type="submit"],
input[type="reset"] {
  background-color: #75e017;
  color: #000000;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

input[type="submit"]:hover,
input[type="reset"]:hover {
  background-color: #75e017;
}

h1 {
  font-size: 50px; 
    font-family: 'Arial', sans-serif;
}
p{

  font-size: 16px;
   
}
ul {
  list-style-type: none;
  padding: 0;
}

li {
  margin-bottom: 5px;
  color: #fff;
  font-size: 18px;
  
  
}


.horario {
  max-width: 350px;
  height: 150px;
  border: 1px solid #ccc;
  background-color: #75e017;
  padding: 10px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-top: 60px;
}

.formulario h1{
  text-align: center;
}

.contactos {
  max-width: 350px;
  height: auto;
  border: 1px solid #ccc;
  background-color: #75e017;
  padding: 10px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-top: 20px;
}

.contactos h2 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}

.contactos ul {
  list-style-type: none;
  padding: 0;
}

.contactos p {
  margin-bottom: 5px;
  color: #fff;
  font-size: 16px;
}