* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: black;
  color: white;
  font-family: Arial, sans-serif;
}
.navbar {
  background-color: black;
  border-bottom: 2px solid red;
  width: 80%;
  margin: auto;
  z-index: 1000;
}
.navbar-brand,
.nav-link {
  color: white;
  cursor: pointer;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: rgb(255, 0, 0) !important;
  font-weight: 600;
  text-shadow: 0px 5px 10px rgb(255, 0, 0);
  margin: -2px 0px 2px 0px;
}
.navbar-brand:hover {
  color: red !important;
}
.navbar-toggler-icon:hover {
  color: red;
}
.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  background-image: none;
  color: white;
  font-size: 1.5rem;
  line-height: 1;
}
.content {
  margin-top: 80px;
}
.dropdown {
  position: absolute;
  top: 30px;
  right: 10px;
}
.dropdown-menu {
  background-color: #1a1a1a;
  border: 1px solid red;
  color: white;
}
.dropdown-menu a {
  color: white;
}
.dropdown-menu a:hover {
  background-color: red;
}
.contact{
  position: fixed;
  font-weight: bold;
  color: #fff;
  font-size: 35px;
  bottom: 45px;
  right: 30px;
  z-index: 99999;
}

    @media (min-width: 767px) {
      .dropdown {
        right: 25px;
      }
    }