@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	src: local('Open Sans Regular'), local('OpenSans-Regular'), url('/styles/OpenSans-Regular.ttf') format('truetype');
}

@font-face {
	font-family: 'Lora Regular';
	font-style: normal;
	font-weight: 400;
	src: local('Lora Regular'), local('Lora-Regular'), url('/styles/Lora-Regular.ttf') format('truetype');
}

@font-face {
	font-family: 'Chopin Script';
	font-style: normal;
	src: local('ChopinScript'), local('ChopinScript'), url('/styles/ChopinScript.ttf') format('truetype');
}

body {
	
	background: #F2D2BD;
}

.content {
	background: transparent;
	justify-content: center;
	box-shadow: none;
}

.love-container {
	justify-content: center;
	align-items: center;
	text-align: center;
}

.love-container h2 {
	font-family: 'Chopin Script', serif;
	font-size: 96px;
	color: black;
}

.love-container p {
	font-family: 'Lora Regular', serif;
	font-size: 24px;
}

.button-container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.yes {
	font-family: 'Open Sans', sans-serif;
	font-size: 24px;
	color: #FA8072;
	background: #eee;
}

.button-container a {
	text-decoration: none;
	padding: 5px 10px;
	border:3px solid #ddd;
	border-radius: 10px;
}

#yes1 {
	margin-right: 25px;
}

.heart-container img{
	height: 30px;
	width: 30px;
	animation: image 4s linear infinite;
}
@keyframes image{
	0%{transform: scale(.5);}
	50%{transform: scale(1.5);}
	100%{transform: scale(.5);}
}

/* Slide */
.slideshow {
	display: flex;
	flex-direction: column;
	justify-content: center; /* Centers horizontally */
	align-items: center;     /* Centers vertically */
	position: relative;      /* To ensure absolute positioning works within this container */
	margin-bottom: 100px;
}

.slide-container {
	width: 100%;
	max-width: 1080px;
	height: 500px;
	position: relative;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

#image-frame {
	height: auto;
	max-height: 100%;
	width: auto;
	max-width: 100%;
}
  
#slide-no {
	font-family: 'Open Sans', sans-serif;
	color: #f2f2f2;
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 15;
}

.dot-container {
	margin-top: 15px;
	text-align: center;
}

.dot {
	height: 10px;
	width: 10px;
	margin: 0 2px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */

.fade {
  animation-name: fade;
  animation-duration: 1.0s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@media only screen and (max-width: 768px) {
	.love-container h2 {
		font-size: 48px;
	}

	.love-container p {
		font-size: 20px;
	}
}

@media only screen and (max-width: 480px) {
	.slide-container {
		height: 300px;
	}

	.dot {
		height: 8px;
		width: 8px;
	}
}