/*----- Cover----- */
body{
	font-family: 'Rubik', sans-serif;
}
.cover{
	
	background-image :url('../media/images/cover.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	height:1000px;
}

@media (max-width: 900px) {
	.cover{
		background-image :url('../media/images/cover-cel.jpg');
		background-repeat: no-repeat;
		background-size: cover;
		height:1000px;
		background-color:black;
	}
	.text-header{
		background-color:white;
	}
  }
h1{
	font-family: 'Sacramento', cursive;
	font-size:5rem;
	text-shadow: 2px 2px rgba(115, 78, 166, 0.75);
}
.style-subtitle{
	font-family: 'Sacramento', cursive;
	font-size:3rem;
	color: rgba(107, 40, 200, 0.75);

}
.cursive{
	font-family: 'Sacramento', cursive;
}
.underline{
	text-shadow: 2px 2px rgba(83, 32, 156, 0.75);
}
/*----- Fin Cover----- */

/*----- Slide imagenes----- */
.slideGallery{
	display:flex;
	width: 100%;
	height:600px;
  }
  .slideGallery img{
	width: 0px;
	flex-grow: 1;
	object-fit: cover;
	opacity: .8;
	transition: .5s ease;
  }
  .slideGallery img:hover{
	cursor:crosshair;
	width: 5%;
	opacity: 1;
	filter: contrast(120%);
  }
/*----- Fin Slide imagenes----- */

/*----- Cuenta Regresiva ----- */
#counter {
	display: flex;
	justify-content: center;
	margin-bottom: 100px;
	width:100%;
	background-color:white;
	opacity:0.8;
	
}
.simply-section {
	width: 180px;
	height: 180px;
	margin: 0 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius:20px;
}
.simply-amount {
	display: block;
	font-size: 50px;
	font-weight: 700;
}
.simply-word {
	font-weight: 300;
	font-size: 30px;
	
}
@media (max-width: 900px) {
	.simply-amount {
		display: block;
		font-size: 20px;
		font-weight: bold;
	}
	.simply-word {
		font-weight: 1rem;
		font-size: 1rem;
	}
  }

/*----- Cuenta Regresiva Fin----- */


/*Sección invitacion*/

.invitation{
	background-image: url("../media/images/flower-bg.png");
	background-repeat: no-repeat;
	background-size: cover;
}

a{
	text-decoration: none;
}
.btn-outline-primary{
	color:rgba(107, 40, 200, 0.75);
	border-color: rgba(107, 40, 200, 0.75);
}
.btn-outline-primary:hover{
	color:white;
	background-color: rgba(107, 40, 200, 0.75);
	border-color: rgba(107, 40, 200, 0.75);
}
.btn-outline-primary:active{
	color:white;
	background-color: rgba(107, 40, 200, 0.75)!important;
	border-color: rgba(107, 40, 200, 0.75);
}

hr{
	color:white;
	box-shadow: 0 0 0 5px rgba(107, 40, 200, 0.75);
	
  }

.footer{
	background-color: rgba(18, 175, 175, 0.705);;
}

.changeTheme{
	position:fixed;
}


