* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	width: 100%;
	height: 100vh;
	background: url('/assets/img/fondo.webp');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;

	&::before {
		content: '';
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.8);
	}
}

img {
	display: block;
	width: 100%;
}

.contenedor {
	width: 90%;
	max-width: 700px;
	height: 100%;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.logo {
	width: 100%;
}

.title {
	width: 100%;
	text-align: center;
	color: #ccc;
	font-size: 1.5rem;
}

.datos {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.d-wrapper {
	width: 100%;
	margin-bottom: 1rem;
	text-align: center;
}

.d-wrapper > h3 {
	color: orangered;
	font-size: 1.5rem;
}

.d-wrapper > span {
	color: white;
	font-size: 1.3rem;
}

@media screen and (min-width: 1024px) {
	.title {
		font-size: 2.5rem;
	}
}
