:root {
  --primary-color: #784822;
  --secondary-color: #95b386;
  --accent-color: #fad5bf;
  --background-color: #fffbf5;
  --primary-font: "Glacial Indifference", Helvetica, serif;
  --handwritten-font: "Molle", Cochin, sans-serif;
  --typewritten-font: "Courier New", Courier, monospace;
}

@font-face {
  /* Handwritten feel */
  font-family:"Molle";
  src: url("fonts/Molle-Italic.ttf") format("truetype");
}
@font-face {
  font-family:"Glacial Indifference";
  src: url("fonts/GlacialIndifference-Regular.otf") format("opentype");
}
body {
	background-color: #fff7fa;
	margin: 1.5rem;
	overflow-x: hidden;
}
h1 {
	font-family: "Molle";
	/* font-size: 1.8rem;*/
	font-size: clamp(1.5rem, 8vw, 3.5rem);
	color: brown;
	text-align: center;
	color: #784822
}
h2 {
	font-family: "Molle";
	font-size: clamp(1.5rem, 7vw, 3rem);
	text-align: center;
  color: #a52a2a;
	margin-top: 3rem;
}
h3 {
	font-family: serif;
	font-size: clamp(1.5rem, 7vw, 3rem);
	margin-bottom: 1rem;
}
h4 {
	font-family: courier;
	font-size: clamp(1rem, 3vw, 2rem);
	text-align: center;
}
p {
	font-family: "Glacial Indifference";
	color: black;
	line-height: 1.6rem;
	margin: 1rem; 
	margin-right: 2rem;
	margin-left: 2rem;
}
a {
	text-decoration: none;
	color: black;
}
time {
	font-family: Snell Roundhand,Brush Script MT, Brush Script Std, cursive;
	font-size: clamp(1rem, 6vw, 2rem);
}
.floating-bunny {
	animation: hopRightToLeft 20s ease-in-out infinite;
}
@keyframes hopRightToLeft {
  0% {
    transform: translateX(calc(100vw)) translateY(0);
    /*transform: translateX(calc(80vw)) translateY(0);*/
  }
  25% {
    transform: translateX(75vw) translateY(-40px);   /* Hop up */
  }
  50% {
    transform: translateX(50vw) translateY(0);
  }
  75% {
    transform: translateX(25vw) translateY(-40px);   /* Smaller hop */
  }
  100% {
    transform: translateX(-200px) translateY(0);
  }
}
.slideshow-container {
  position: relative;
  width: fit-content;
  width: 19rem;
  height: 15rem;
  border: dotted;
  border-color: #a52a2a;
  border-width: 3px;
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}
.slides {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  z-index: 0;
}

.slides.active {
  opacity: 1;
  z-index: 1;
}

.mail-heart {
	border-color: black;
	border-width: 2px;
	border-style: dotted;
	background-color: pink;
	padding: 20px;
	margin: 30px;
	border-radius: 0px 40px 0px 40px;
	box-shadow: 5px 5px;
}
.heart-seal {
	margin: 30%;
}
.event {
  margin: 1rem;
}
.event img {
  border-radius: 30px;
}
.stamp-gallery {
  justify-content: center;
  align-items: center;
  align-content: center;
}
.page1 {
	/*height: 100vh;*/
}
.page2 {
	/*height: 100vh;*/
}
.page3 {
}
.page4 {
}
.footer {
  text-align: center;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
}
