/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh; 
    transition: background-color 0.3s, color 0.3s;
	background-color: #121212;
    color: #ffffff;
}

/* Contenedor principal */
.container {
    display: flex;
    /*flex-direction: column;*/
    gap: 20px;
    align-items: center;
}

/* Estilos de los botones */
.button {
    padding: 20px 40px;
    font-size: 1.5rem;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    background-color: #ff5722;
    color: #fff;
    transition: background-color 0.3s;
	min-width:200px;
}

.button:hover {
    background-color: #e64a19;
}

/* Botón para togglear el modo oscuro */
.toggle-button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    transition: background-color 0.3s, color 0.3s;
}
