@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rubik:wght@300&display=swap');

/* 

Paleta Colores

Naranja: #f87f52;
Azul Turquesa: #47cec0;
Amarillo: #fccf52;
Rojo: #ef5466;
Gris: #c5ccd4;

*/

* {
	padding: 0;
	margin: 0;
	list-style: none;
	font-family: 'Rubik', sans-serif;
	box-sizing: border-box;
	font-size: 1rem;
}

h1,h2,h3,h4,h5,h6 {
	font-family: 'Bebas Neue', cursive;
}

h1 {
	font-size: 2rem;
}

h2 {
	font-size: 1.4rem;
}

html, body {
	background: #f7f7f7;
}

.navbar-toggler-icon {
	color: white!important;
}

#cabecera {
	background: #222;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9990;
	padding: 10px;
}

#cabecera .navbar-dark {
	background: #000 !important;
	border: none;
}

#menuMovil ul li a {
	color: #fff;
}

#menuMovil ul li a {
	font-size: .9rem;
	padding: 3px 10px;
	margin-top: 12px;
	transition: all 0.4s;
}

#menuMovil ul li a:hover {
	color: #ccc;
}

input:focus {
	outline: none !important;
	background:#fff;
}

.correcto, .error {
	background: #28a745;
	color: white;
	width: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	padding: 30px;
	text-align: center;
	z-index: 9999!important;
	font-size: 1.2em;
}

.error {
	background: #ef5466;
}

#main {
	margin-top: 100px;
}

.btn-primary {
	width:95%;
}

.proyecto_card {
	background: white;
	padding: 60px 60px 30px 60px;
	border-radius: 10px;
	margin-bottom: 30px;
}

.modal-content {
	padding-bottom: 1rem!important;
}

.close span {
	font-size: 2rem!important;
	color: red!important;
}

@media only screen and (max-width: 768px) {

	.proyecto_card {
		padding: 10px 10px 5px 10px;
	}

}