
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Libre Caslon Text", serif; 
  background-color: #fff;
  color: #000000;
  padding-top: 80px; 
}


h1, h2, h3, .nav-logo, .nav-link {
  font-family: "Libre Baskerville", serif;
}


.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 2rem;
  z-index: 1000;
}

.nav-logo {
  font-style: italic;
  font-weight: 700;
  font-size: 1.3rem;
  color: black;
  text-decoration: none;
}

.nav-right {
  display: flex;
  gap: 1.75rem;
}

.nav-link {
  color: black;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: all 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: black;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  font-style: italic;
  text-decoration: underline;
}

.navbar::before {
  content: "Exercises in Style";
  font-family: "Libre Baskerville", serif;
  font-style: italic;
  font-size: 1.3rem;
  margin-right: auto;
}


.navbar {
  display: flex;
  align-items: center;
  gap: 2rem;
}
