@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;600&family=Poppins:wght@300;400;500;600;700&family=Raleway:wght@200;500&display=swap');
body{
    background: #333333;
}

h1{
	font-family: 'Poppins', sans-serif;
	font-weight: bold;
	text-align: center;
	font-size: 3rem;
	color: #fdfbfb;
	padding: 4rem;
}
h2, span{
	font-family: 'Poppins', sans-serif;
    font-weight: bold;
    text-align: center;
    font-size: 1.5rem;
    display: flex; /* Utilizamos flexbox para centrar verticalmente */
    align-items: center; /* Centramos verticalmente los elementos */
    justify-content: center; /* Centramos horizontalmente los elementos */
    color: #ffffff;
	padding: 3rem;
}
p, ul{
	font-family: 'Lora';
	font-size: 1.2rem;
	color: #fdfbfb;
}
.list-group{
    font-family: 'Lora';
	font-size: 1.2rem;
	color: #fdfbfb;
}

@media only screen and (max-width: 767px) {
	.navbar-nav {
		text-align: center;
	}
	.inicio {
		padding-top: 0.1rem;
	}
	.img-container img{
        width: 100%;
    }
	.col-md-5{
		padding-top: 3rem;
	}
}