body {
	background-color: rgb(245, 245, 245);
	font-family: "Poppins", sans-serif;	   
}

#masthead{
	padding-top: 200px;
	padding-bottom: 200px; 
	text-align: center;
	background-image: url("/assets/img/artes.jpg");
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: center center;
	background-size: cover;		
	margin-bottom: 50px;
	position: relative;
	z-index: -1;	
}

.banner-masthead {
	background-color: white;
	position: relative;
	margin: 0 auto;
	max-width: 1400px;
	bottom: -15rem;
	padding: 20px;
	border-radius: 5px;
    box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
	color: #004d0b;
	width: 300px;	 
}  

#masthead .masthead-heading {
    font-size: 25px; 
    font-weight: 700;
}

@media (min-width: 768px) {
	.banner-masthead {width: 600px;}  

	.masthead .masthead-heading {font-size: 80%;}	
}

/*---------------------------------------------------------------------------------------*/
/*  ESTRUCTURA
/*---------------------------------------------------------------------------------------*/
#banner{
    position: relative;
	max-width: 1700px;
    margin-top: 5rem;
	margin-bottom: 5rem;
}

.fade-in {
	opacity: 0;
	animation: fadeIn 3s forwards; 
}

.shadow {
    cursor: pointer;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
	border-radius: 5px;
}
  
.brutalist-card__button {
	display: flex; 
    justify-content: center; 
    align-items: center;
	width: 30%;
	height: 100px; 
	padding: 0.75rem;
	text-align: center;
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	font-family: "Poppins", "Poppins-fallback", sans-serif;
	border: 3px solid #454545;
	background-color: #fff;
	color: #454545;
	position: relative;
	transition: all 0.2s ease;
	box-shadow: 5px 5px 0 #454545;
	overflow: hidden;
	text-decoration: none;
	margin-bottom: 1rem;
	align-items: center;
}

.brutalist-card__button::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 30%;
	height: 100%;
	background: linear-gradient(
		120deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: all 0.6s;
}
  
.brutalist-card__button:hover::before {
	left: 100%;
}
  
.brutalist-card__button:hover {
	transform: translate(-2px, -2px);
	box-shadow: 7px 7px 0 #000;
}

.brutalist-card__button--mark:hover {
	background-color: rgb(81, 171, 81);
	border-color: rgb(81, 171, 81);
	color: #fff;
	box-shadow: 7px 7px 0 green;
}


.brutalist-card__button:active {
	transform: translate(5px, 5px);
	box-shadow: none;
}

@keyframes fadeIn {
	to {
		opacity: 1;
	}
}

@media (max-width: 768px) { 
	#banner{		
		margin-bottom: 0;
	}
}