/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
   

@import url('https://fonts.googleapis.com/css2?family=Goudy+Bookletter+1911&display=swap');
body {
  background-color: seashell;
  color: DarkSlateGrey;
  font-family: "Goudy Bookletter 1911";
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}/* Reset margins and paddings */
* {
  margin: 5;
  padding: 5;
  box-sizing: border-box;
}

/* Navbar container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #547C7C;
  padding: 15px 30px;
  font-family: "Goudy Bookletter 1911";
}

/* Logo styling */
.logo {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

/* List container */
.nav-links {
  list-style: none; /* Removes bullet points */
  display: flex;
  gap: 20px;       /* Adds space between links */
}

/* Individual links */
.nav-links a {
  color: #fff;
  text-decoration: none; /* Removes underline */
  font-size: 16px;
  padding: 8px 12px;
  transition: 0.3s;
}

/* Hover state effect */
.nav-links a:hover {
  background-color: #555;
  border-radius: 4px;
}

/* Highlight the current page */
.nav-links .active {
  background-color: #333;
  border-radius: 4px;
}
.column {
  float: left;
  width: 50%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}.row {
  display: flex;
}

.column {
  flex: 50%;
}
