body {
  margin: 0;
  font-size: 18px;
}

.main-div {
  padding: 20px;
  margin-top: 30px;
  background-color: #1abc9c;
  font-size: 1.15em;
  /* height: 1500px; */
}
.zen-dots-regular {
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.font-default {
    font-family: Arial, sans-serif;
}
.font-techdiary {
    font-family: monospace;
}

.full-width-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Navbar styles */
ul.navbar {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
  position: fixed;
  top: 0;
  width: 100%;
}
ul.navbar li {
  float: left;
}
ul.navbar li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
ul.navbar li a:hover:not(.activeNav) {
  background-color: #111;
}
.activeNav {
  background-color: #04AA6D;
}

/* Footer styles */
footer {
  background-color: #f2f2f2;
  padding: 20px;
  text-align: center;
  width: 100%;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  padding: 0 10px;
}

.footer-section h3 {
  margin-top: 0;
}

.footer-section ul {
  list-style-type: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #333;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.social-icons a {
  margin: 0 5px;
  color: #333;
  font-size: 20px;
}

.copyright {
  margin-top: 20px;
  color: #666;
}