/* Set default font and background color */
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

body {
  font-family: 'Lato', sans-serif;
  background-color: #f5f5f5;
  color: #333333;
}


/* Set style for the main content section */
main {
  margin: 2rem auto;
  max-width: 800px;
  padding: 2rem;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Set style for the section headers */
h1 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #02684e;
}

h2 {
  font-size: 1.4rem;
  text-decoration: underline;
}

/* Set style for the paragraph text */
p {
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 100;
}

ul li {
  font-size: 1.2rem;
}

img {
  max-width: 100%;
}

a {
  color: #080187;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

a:hover {
  color: #ff8c00;
  text-decoration: underline;
}

a:focus {
  outline: none;
  box-shadow: 0 0 0 2px #ff8c00;
}

a:active {
  color: #ff6c00;
}

.rsvp {
  background-image: url('https://i.pinimg.com/originals/bd/c7/7c/bdc77c792f73d4d5aea24e8c4a6ce68e.gif');
  background-color: #FF00FF;
  color: #00FF00;
  border: 3px solid #00FF00;
  font-family: "Papyrus", cursive, sans-serif;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 10px;
  text-shadow: 2px 2px #000000;

}

.rsvp:hover {
  background-color: #00FF00;
  border: 3px solid #FF00FF;
  color: #FF00FF;
  text-decoration: none;
  text-shadow: 5px 5px #FFFFFF;
}