/* ===============================
   Navigation Bar
   =============================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #4deeea; /* Navigation bar background color */
  padding: 1em 2em;
}

.logo {
  color: #74ee15; /* words on the left of navigation bar */
  font-size: 1.5em;
  font-weight: bold;
}

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

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #f000ff;     /* Link text color in top navigation bar*/
  text-decoration: none;
  padding: 0.5em;
  display: block;
}


/* ===============================
   Text Boxes
   =============================== */
.boxes {
  display: flex; 
  flex-wrap: wrap;
  gap: 1.5em;
  padding: 2em;
  justify-content: center;
}

.box {
  background-color: magenta;   /* Box background color */
  padding: 1.5em;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


/* ===============================
   General Page Styling
   =============================== */
body {
  font-family: 'Verdana', sans-serif;
  font-size: 16px;
  color: black;   /* Color of words on page */
  background-color: limegreen; /* background color of page */
  margin: 0;
  padding: 0;
}


/* ===============================
   Headings & Paragraphs
   =============================== */
h1 {
  font-family: 'Verdana', sans-serif;
  color: purple;            /* Title text color */
  text-align: center;
  margin-top: 50px;
  font-size: 2.5em;
}

p {
  font-family: 'Verdana', serif;
  color: darkblue;              /* Paragraph text color inside boxes */
  line-height: 1.6;
  text-align: center;
  padding: 0 20px;
}


/* ===============================
   Link Hover Effects
   =============================== */
a:hover {
  color: white;    /* color the link changes to when a mouse hovers over it */
  text-decoration: underline;
}


/* ===============================
   Bottom Navigation Bar
   =============================== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: rgb(110, 213, 213);    /* color of the bottom navigation bar */
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 1em 2em;
  z-index: 100;
}

.bottom-nav a {
  color:skyblue;    /* word color of bottom navigation bar */
  text-decoration: none;
  transition: background-color 0.3s;
}

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