.Contenedor{
	width: 100%;
	height: 100vh;
	background-color: #455e6a;
	display: flex;
	justify-content: center;
	align-items: center;
}

.Contenedor h1{
	width: 100%;
	color:white;
}

.Contenedor p{
	color: white;
    font-size: 3em;
    text-align: center;
    font-weight: 100;
}





// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

// Large devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }

