.todo{
    background-image: url("/assets/img/fondo.gif");
    /* Reemplaza 'url_de_tu_imagen.jpg' con la ruta de tu imagen de fondo */
    background-size: cover;
    /* Ajusta la imagen para cubrir todo el fondo */
    background-repeat: no-repeat;
    /* Evita que la imagen de fondo se repita */
    background-attachment: fixed;
    /* Mantiene la imagen de fondo en su lugar mientras se desplaza la página */
    overflow-x: auto;

    color: white;
}

@keyframes lds-ripple {
	0% {
		top: 36px;
		left: 36px;
		width: 0;
		height: 0;
		opacity: 0;
	}
	4.9% {
		top: 36px;
		left: 36px;
		width: 0;
		height: 0;
		opacity: 0;
	}
	5% {
		top: 36px;
		left: 36px;
		width: 0;
		height: 0;
		opacity: 1;
	}
	100% {
		top: 0px;
		left: 0px;
		width: 72px;
		height: 72px;
		opacity: 0;
	}
}

.lds-ripple {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}

.lds-ripple div {
	position: absolute;
	border: 4px solid #222;
	opacity: 1;
	border-radius: 50%;
	animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
	animation-delay: -0.5s;
}



#notification {
	position: fixed;
	bottom: 0;
	left: 0;

	width: 100%;
	height: 100%;

	background-color: #292929c5;

	z-index: 1100;
}

#notification > div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	width: auto;
	height: auto;

	background-color: white;
	border-radius: 20px;

	padding: 25px 50px;
}

#notification > div button {
	background-color: #222;
	border: none;
	border-radius: 10px;

	padding: 10px 25px;

	color: white;
	font-weight: bold;

	font-size: 1em;

	transition: background-color 0.2s;
}

#notification > div button:hover, #notification > div button:focus {
	background-color: #555;
}