@charset "utf-8";
/* CSS Document */
body {
  font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif"sans-serif;
  margin: 0;
  padding: 0;
}

h1, h2 {
  text-align: center;
  margin: 20px 0;
}

/* Navigation */
.navbar {
  border: 1px solid #7dd3a0;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding: 10px 20px;
  margin: 20px;
}

.navbar ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar li + li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(20deg);
  width: 1px;
  height: 20px;
  background: #7dd3a0;
}

.navbar a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
}

.navbar a.active,
.navbar a:hover {
  color: hotpink;
}


		body {background-color: lightyellow}
		
		h1 {color: hotpink; font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif"; font-size: 50px}
		
		h2 {font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif"}
		
		h3 {font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif"}
		
		h4 {font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif"}
		
		
		