@font-face {
  font-family: 'KissingSeason';
  src: url('fonts/KissingSeason.ttf') format('truetype');
}

body {
  background-color: white;
  background-image:
    linear-gradient(to right, #a3d2f2, #f7cac9),
    linear-gradient(to right, #f7cac9, #a3d2f2);
  font-family: 'Emilys Candy', cursive; /* fallback for body text */
  text-align: center;
  margin: 0;
  padding: 20px;
}

h1 {
  font-family: 'Emilys Candy', cursive;
  color: darkblue;
}

h2 {
  font-family: 'Emilys Candy', cursive;
  font-size: 1.6em;
  color: darkblue;
  margin-top: 20px;
}

p {
  font-family: 'KissingSeason', Arial, sans-serif;
}

.profile-photo {
  width: 200px;
  height: auto;
  border-radius: 50%;
  display: block;
  margin: 20px auto;
}

.nav-menu {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  background-color: #a3d2f2;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-menu li a {
  text-decoration: none;
  color: darkblue;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.nav-menu li a:hover {
  background-color: pink;
  color: white;
  cursor: pointer;
}

.gallery-item {
  width: 200px;
  height: auto;
}
