@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);
  }
}
.bodyText {
  text-align: center;
  color: rgb(165, 164, 164);
  margin-top: 5%;
  font-family: 'Montserrat Alternates', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

#quoteBtn {
  border: 0;
  margin-top: 1%;
  border-radius: 55px;
  padding: .5%;
  transition: .4s;
  color: white;
  background-color: transparent;
}
#quoteBtn a {
  color: white;
}
#quoteBtn:hover {
  transform: scale(1.1);
  border: 1px solid #ff3c009c;
  color: #ff3c00;
  margin-bottom: 1%;
  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;
}

#firstArrow {
  color: rgb(172, 0, 0);
  overflow: hidden;
}
#secondArrow {
  color: rgb(172, 0, 0);
  overflow: hidden;
}

/*//////////////////////////////////////////////////////

/*                      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; }
}

/*/////////////////////////////////////////////////////*/

@font-face {
  font-family: Clip;
  src: url("https://acupoftee.github.io/fonts/Clip.ttf");
}
@media screen and (max-width: 477px) {
  body #sign { display: none; overflow: hidden; }
  .mobileTxt { display: contents !important; }
}
@media screen and (max-width: 4000px) {
  .mobileTxt { display: none; }
}
.mobileTxt h1 {
  text-align: center;
  font-family: 'Montserrat Alternates', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: rgb(190, 190, 190);
  text-shadow: 5px 5px 5px red;
}
#sign {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 50%;
  margin-top: 10%;
  background-image: radial-gradient(
    ellipse 50% 35% at 50% 50%,
    #6b1818,
    transparent
  );
  transform: translate(-50%, -50%);
  letter-spacing: 2;
  left: 50%;
  top: 50%;
  font-family: "Montserrat Alternates", sans-serif;
  text-transform: uppercase;
  font-size: 6em;
  color: #ff3c00;
  text-shadow: 0 0 0.6rem #ca0000, 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;
  animation: shine 2s forwards, flicker 3s infinite;
}
.flicker:hover, .fast-flicker:hover {
  transition: .3s;
  transform: scale(1.1);
  cursor: crosshair;
}

@keyframes blink {
  0%,
  22%,
  36%,
  75% {
    color: #ff3c00;
    text-shadow: 0 0 0.6rem #ca0000, 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;
  }
  28%,
  33% {
    color: #ff3c00;
    text-shadow: none;
  }
  82%,
  97% {
    color: #ff3c00;
    text-shadow: none;
  }
}

.flicker {
  animation: shine 2s forwards, blink 3s 2s infinite;
}

.fast-flicker {
  animation: shine 2s forwards, blink 10s 1s infinite;
}

@keyframes shine {
  0% {
    color: #ca0000;
    text-shadow: none;
  }
  100% {
    color: #ff3c00;
    text-shadow: 0 0 0.6rem #ca0000, 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;
  }
}

@keyframes flicker {
  from {
    opacity: 1;
  }

  4% {
    opacity: 0.9;
  }

  6% {
    opacity: 0.85;
  }

  8% {
    opacity: 0.95;
  }

  10% {
    opacity: 0.9;
  }

  11% {
    opacity: 0.922;
  }

  12% {
    opacity: 0.9;
  }

  14% {
    opacity: 0.95;
  }

  16% {
    opacity: 0.98;
  }

  17% {
    opacity: 0.9;
  }

  19% {
    opacity: 0.93;
  }

  20% {
    opacity: 0.99;
  }

  24% {
    opacity: 1;
  }

  26% {
    opacity: 0.94;
  }

  28% {
    opacity: 0.98;
  }

  37% {
    opacity: 0.93;
  }

  38% {
    opacity: 0.5;
  }

  39% {
    opacity: 0.96;
  }

  42% {
    opacity: 1;
  }

  44% {
    opacity: 0.97;
  }

  46% {
    opacity: 0.94;
  }

  56% {
    opacity: 0.9;
  }

  58% {
    opacity: 0.9;
  }

  60% {
    opacity: 0.99;
  }

  68% {
    opacity: 1;
  }

  70% {
    opacity: 0.9;
  }

  72% {
    opacity: 0.95;
  }

  93% {
    opacity: 0.93;
  }

  95% {
    opacity: 0.95;
  }

  97% {
    opacity: 0.93;
  }

  to {
    opacity: 1;
  }
}

h2,h1,h5,h6 {
  transition: .2s ease-in-out;
  overflow: hidden;
}
h2:hover, h1:hover, h5:hover, h6:hover {
  transform: skewX(2deg) skewY(-5deg);
  overflow: hidden;
  cursor: pointer;
}
#bodyTexth6 {
  text-align: center;
  margin-top: 1%;
}
#selfimg {
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: .4s;
}
#selfimg:hover {
  transform: scale(1.2);
  filter: opacity(45%);
  cursor: pointer;
}
.seperateText h6 {
  text-align: center;
}
.seperateText {
  max-width: 25%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.seperateText img {
  display: block;
  transition: .4s;
}
.seperateText:hover img {
  transform: scale();
  cursor: pointer;
}
.line {
  width: 100%;
  margin: 15%;
}


/*                          FOOTER START                         */

.footerContainer {
  box-shadow: inset 0px 0px 16px 0px black;
  background-color: rgba(31, 31, 31, 0.432);
  position: relative;
  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; }
}
@media screen and (max-width: 1567px) {
  #selfimg { max-width: 100%; }
}




.wrapper{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%); 
}
.circle{
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #fcdc29;
  border-radius: 50%;
  animation: loading 1.5s cubic-bezier(.8, .5, .2, 1.4) infinite;
  transform-origin: bottom center;
  position: relative;
}
@keyframes loading{
  0%{
    transform: translateY(0px);
    background-color: #fcdc29;
  }
  50%{
    transform: translateY(50px);
    background-color: #ef584a;
  }
  100%{
    transform: translateY(0px);
    background-color: #fcdc29;
  }
}
.circle-1{
  animation-delay: 0.1s;
}
.circle-2{
  animation-delay: 0.2s;
}
.circle-3{
  animation-delay: 0.3s;
}
.circle-4{
  animation-delay: 0.4s;
}
.circle-5{
  animation-delay: 0.5s;
}
.circle-6{
  animation-delay: 0.6s;
}
.circle-7{
  animation-delay: 0.7s;
}
.circle-8{
  animation-delay: 0.8s;
}

.body2{
  background-color: #fcdc29;
}
