body {
    background-color: beige;
}

p {
    color: green;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 70px;
    text-align: center;
}



h1{
    color: #343a40;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: 40px;
}



/* Inputs y select */
input, select {
	width: 100%;
	padding: 5px;
	margin: 5px 0;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 1rem;
}

/* Radios */
.radio {
	width: 50%;
}
.form-section {
	background-color: #f4f4f4;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	max-width: 600px;
	margin: auto;
}
.form-article {
	background-color: rgb(32, 26, 197);
	padding: 15px;
	border-radius: 5px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* Botón de envío */
input[type="submit"] {
	background: #2811ac;
	color: white;
	font-size: 1rem;
	font-weight: bold;
	border: none;
	padding: 10px;
	cursor: pointer;
	transition: background 0.3s ease;
}

input[type="submit"]:hover {
	background: #e64a19;
}

.container {
    background-color: silver;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: left;
    margin: 20px auto; 
}

.footer {
    background-color: #343a40; /* Color oscuro */
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    width: 100%;
    margin-top: auto; /* Empuja el footer hacia abajo si hay poco contenido */
}