@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap');

.header {
  padding: 0px; /* some padding */
  text-align: center; /* center the text */
  background: white; /* green background */
  color: black; /* white text color */
  margin-bottom: 150px;
  top: 0;
  font-size: 30px;
  font-family: "Instrument Serif", serif;;
  font-weight:200;
  position: sticky;
}


/* Style the top navigation bar */

/* Style the navigation bar links */
 .navbar a {
  font-family: "Instrument Serif", serif;
  font-size: 200px;
  gap: 30px;           
  display:flex;
  justify-content: center;
  color: rgb(79, 79, 79); /* White text color */
  text-align: center; /* Center the text */
  position: relative;
  text-decoration: none;
  margin: 0px 10px;
}

 .navbar a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #000;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
 a:hover::before {
  transform: scaleX(1);
}
