body{
    background: #0088ff;
}
.titulo{
    width: 100%;
    background: transparent;
    color: white;
    font-size: 40px;
    text-align: center;
    border: 1px solid white;
    border-radius: 20px;
}
img{
    width: 94%;
    padding: 3%;
}
.aviso-privacidad{
    width: 100%;
	display: flex;
	justify-content: center;
}
.aviso-privacidad button{
    width: 300px;
	height: 40px;
    background: var(--yellow);
	border-radius: 24px;
	border: 2px solid black;
	outline: none;
	font-size: 20px;
	color: #FFF;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 50px;
	cursor: pointer;
	transition: 0.5s;
}
.aviso-privacidad button:hover{
    background: var(--red);
}