@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hachi+Maru+Pop&family=Oswald&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
body {
  box-sizing: content-box;
  background-color: rgb(6, 20, 32);
  font-family: 'Anton', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
a {
  text-decoration: none;
}

/*                      MAIN NAV                           */
.mainnav {
  padding-bottom: 3vh;
  background-color: rgba(31, 31, 31, 0.432);
  overflow: hidden;
  box-shadow: inset 0px 0px 16px 0px black;
  padding-top: .5%;
}
.mainnav a {
  color: rgb(221, 221, 221);
  margin-left: 5%;
  position: relative; left: 35%; top: 1.5vh;
  font-size: 20px;
  font-family: 'Montserrat Alternates', Arial, Helvetica, sans-serif;
  transition: .4s;
}
.mainnav a:hover {
  color: #ff3c00;
  overflow: hidden;
  text-shadow: 0 0 0.4rem #ff3c00, 0 0 1.5rem #ca0000,
    -0.2rem 0.1rem 1rem #ca0000, 0.2rem 0.1rem 1rem #ca0000,
    0 -0.5rem 2rem #ca0000, 0 0.5rem 3rem #ca0000;
    cursor: pointer;
}
.customJava {
  float: right;
  margin: 1%;
  margin-bottom: 0;
  margin-right: 2%;
  border-radius: 20px;
  transition: .15s linear;
  font-family: 'Montserrat Alternates', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: white;
  background-color: rgb(15, 15, 15);
  border: 0;
  padding: .5%;
  font-size: 12px;
  box-shadow: 0px 0px 5px 0px black;
}
.customJava:hover {
  box-shadow: 0px 0px 30px 0px rgb(185, 1, 1);
  transform: scale(1.09);
  color: rgb(255, 255, 255);
  background-color: rgb(131, 0, 0);
  cursor: pointer;
}
.dark-mode {
  background-color: rgb(90, 0, 0) !important;
  transition: .4s all linear !important;
}
.redTxt {
  color: rgb(179, 0, 0);
}
img.personallogo:hover {
  animation: stop;
  cursor: pointer;
}
img.personallogo {
  margin-left: 1.5%;
  margin-top: .8%;
  position: absolute;
  animation: rotation 2s infinite linear;
  transition: ease-in-out;
}
.seperateText {
  border-radius: 70px;
}
@keyframes rotation {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(359deg);
  }
}

/*//////////////////////////////////////////////////////

/*                      MOBILE NAV MENU                    */

/* Style the navigation menu */
.topnav {
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.418);
  position: relative;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
  display: none;
}

/* Style navigation menu links */
.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
  font-family: 'Montserrat Alternates', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Style the hamburger menu */
.topnav a.icon {
  display: block;
  position: absolute;
  right: 0;
  top: .5vh;
  color: black;
  transition: .4s;
}
.active img {
  width: 35px;
  animation: rotation 2s infinite linear;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
  color: rgb(194, 193, 193);
  text-shadow: 0 0 0.4rem #ffe6ff, 0 0 1.5rem #ca0000,
    -0.2rem 0.1rem 1rem #ca0000, 0.2rem 0.1rem 1rem #ca0000,
    0 -0.5rem 2rem #ca0000, 0 0.5rem 3rem #ca0000;
}

/* Style the active link (or home/logo) */
.active {
  background-color: #a13c3c;
  box-shadow: inset 0px 0px 10px 0px black;
}
.active:hover {
  box-shadow: inset 0px 0px 10px 0px black;
  cursor: default;
}

@media screen and (max-width: 4000px) {
  .topnav { display: none; }
}
@media screen and (max-width: 842px) {
  .topnav { display: block; }
  .mainnav { display: none; }
  .personallogo { display: none; }
}

/*/////////////////////////////////////////////////////*/


.bodyContainer {
  text-align: center;
  padding-top: 5%;
  color: rgb(185, 185, 185);
}


/*                          FOOTER START                         */

.footerContainer {
  box-shadow: inset 0px 0px 16px 0px black;
  background-color: rgba(31, 31, 31, 0.432);
  position: absolute;
  bottom: 0vh;
  width: 100%;
  clear: both;
}
.footerContactinfo ul {
  display: inline-block;
  list-style-type: none;
  border-right: 2px solid rgb(43, 43, 43);
  padding-right: 2%;
  margin-top: 1%;
}
.footerContactinfo ul#contactList {
  border-left: 2px solid rgb(43, 43, 43);
}
.footerContactinfo a {
  color: rgb(214, 214, 214);
  transition: .4s;
}
.footerContainer a:hover {
  color: red;
}
.footerContactinfo {
  padding: 2%;
  font-family: 'Montserrat Alternates', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: 16px;
  text-align: center;
}
#footerLogo {
  float: right;
}
#copyright {
  color: white;
  float: left;
  margin-top: -1.5%;
  filter: opacity(30%);
}

/*/////////////////////////////////////////////////////////
MOBILE FRIENDLY STUFF
/////////////////////////////////////////////////////////*/
@media screen and (max-width: 997px) {
  h1:hover,h2:hover,h3:hover,h4:hover,h5:hover,h6:hover { transform: none; }
}