* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Cinzel", serif;
}
nav {
  width: 100%;
  height: 80px;
  background-color: white;
  display: flex;
  flex-direction: row;
  padding: 10px 30px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  text-align: center;
  z-index: 10;
}
.navbar-links img {
  height: 70px;
  width: auto;
  margin-right: 20px;
  border-radius: 20%;
}
.navbar-links {
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  display: flex;
}
.navbar-links > a {
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  color: black;
  transition: all 0.3s ease;
}
.navbar-links > a:hover {
  border-bottom: 1px solid black;
  color: black;
}
