
/* General Styles */
body {
  margin: 0;
  padding: 0;
  background-color: black;
  color: #1CFB07;
  font-family: "Ubuntu Sans Mono";
  font-style: italic;
  text-align: center;
}
/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  position: fixed;
  top: 1%;
  width: 100%;
  background-color: rgba(10,10,10,.80);
  padding: 0px 0px;
  box-shadow: 0px 0px 500px #21FF20;
  z-index: 1000;
}
.footbar {
   display: flex;
  justify-content: left;
  position: fixed;
  top: 90%;
  width: 100%;
  background-color: rgba(10,10,10,.80);
  padding: 0px 1600px 0px;
  box-shadow: 0px 0px 500px #21FF20;
  z-index: 1000;
}
.navbar-right {
  display: block;
  align-items: right;
}
.navbar-left {
  display: flex;
  align-items: center;
}
.navbar-left a:hover {
  filter: drop-shadow(3px 3px 8px #FF1F1F);
  transition:
    width 2s,
    height 2s,
    background-color 2s,
    rotate 1s;
    rotate: -360deg;
}
.logo {
  height: 80px;
  width: auto;
  opacity: .80;
}
.title {
  color: rgba(33, 255, 32, .66);
  text-decoration: none;
  font-size: 28pt;
  filter: drop-shadow(0px 0px 8px #21FF20);
  text-shadow: 1px 1px 2px black;
}
.menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  text-decoration: none;
}
.menu li a {
  color: black;
  text-decoration: none;
  font-weight: bold;
  font-size: 16pt;
  filter: drop-shadow(0px 0px 2px #21FF20);
  text-shadow: 1px 1px 2px black;
}
.menu li a:hover {
  color: #21FF20;
  filter: drop-shadow(3px 4px 8px #FF1F1F) drop-shadow(0px 0px 20px #21FF20);
}
.footer-text {
  color: #21FF20;
  filter: drop-shadow(3px 4px 8px #FF1F1F) drop-shadow(0px 0px 20px #21FF20);
}
.center-content {
  margin-top: 120px;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-family: "Ubuntu Sans Mono";
  text-shadow: 2px 2px 2px black;
}
.home-logo {
  margin-top: 20px;
  height: 200px;
  width: auto;
}
.shadowed-green {
  filter: drop-shadow(3px 3px 15px #21FF20);
}
.shadowed-red {
  filter: drop-shadow(3px 3px 15px #FF1F1F);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 400px;
  font-family: "Ubuntu Sans Mono";
}
.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-family: "Ubuntu Sans Mono";
  font-size: 1em;
}
.contact-form button {
  padding: 10px;
  background-color: #21FF20;
  border: none;
  border-radius: 5px;
  font-family: "Ubuntu Sans Mono";
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact-form button:hover {
  background-color: #FF1F1F;
}

/* Mobile Responsive Adjustments */
@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 5px 5px;
    box-shadow: 0px 0px 50px #21FF20;
  }

  .logo {
    height: 60px;
  }

  .title {
    font-size: 24pt;
    margin-left: 5px;
  }

  .menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    padding: 5px;
  }

  .menu li a {
    font-size: 18pt;
    padding: 4px 8px;
  }

  .footbar {
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    top: auto;
    bottom: 0;
    box-shadow: 0px 0px 50px #21FF20;
  }

  .center-content {
    margin-top: 100px;
    margin-bottom: 100px;
    padding: 0 10px;
  }
}
