/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: pink; /* CHANGE THE COLOR OF THE NAVIGATION BAR */
  padding: 1em 2em;
}

.logo {
  color:teal;
  font-size: 1.5em;
  font-weight: bold;
}

/* Text Boxes */
.boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5em;
  padding: 2em;
}

.box {
  background:yellow; /* CHANGE THE COLOR OF THE BACKGROUND OF THE WORD BOX */
  padding: 1.5em;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5em;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color:white; /* CHANGE THE COLOR OF THE LINKS */
  text-decoration: none;
  padding: 0.5em;
  display: block;
}

/* General Page Styling */
body {
  font-family: 'verdana', sans-serif; 
  font-size: 16px; 
  color:white; /* CHANGE THE COLOR OF THE NAVIGATION BAR */
  background-color: beige; /* Set the background color of the page */
  margin: 0;
  padding: 0;
}

/* Header Styling */
h1 {
  font-family: 'verdana', sans-serif; 
  color: PURPLE; /* CHANGE THE COLOR OF THE WORDS ON THE NAVIGATION BAR */
  text-align: center; 
  margin-top: 50px; 
  font-size: 2.5em; 
}

/* Paragraph Styling */
p {
  font-family: 'verdana', serif; 
  color: PINK; /* CHANGE THE COLOR OF THE WORDS */
  line-height: 1.6; 
  text-align: center;
  padding: 0 20px;
}

/* Link Styling */

a:hover {
  color: yellowgreen; 
  text-decoration: underline; 
}

/* ===============================
   Bottom Navigation Bar
   =============================== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: black;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 1em 2em;
  z-index: 100;
}

.bottom-nav a {
  color: white;
  text-decoration: none;
  transition: background-color 0.3s;
}

.bottom-nav a:hover {
  background-color: yellow;
}