@import url("fontawesome-all.min.css");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300italic,400,400italic");
html {
  box-sizing: border-box;
}

body {
  line-height: 1;
  overflow-x: hidden;
  -webkit-text-size-adjust: none;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: "Source Sans Pro", Helvetica, sans-serif;
  vertical-align: baseline;
  font-size: 16pt;
  font-weight: 300;
  line-height: 1.65em;
  color: #666;
}

*, *:before, *:after {
  box-sizing: inherit;
}

h1 {
  font: inherit;
  color: white;
  line-height: 1em;
  font-size: 2.25em;
  line-height: 1.35em;
}

/* Icon */
.icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1em;
}

.icon {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  text-transform: none !important;
  text-decoration: none;
  font-family: "Font Awesome 5 Brands", "Font Awesome 5 Free";
  border-bottom: none;
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
.icon:hover {
  color: white;
}
.icon:before {
  line-height: inherit;
}
.icon.solid:before {
  font-weight: 900 !important;
}

/* Header */
#header {
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 2em;
  justify-content: center;
  background-attachment: fixed, fixed, fixed;
  background-image: url("images/overlay2.png"), url("images/overlay3.svg"), linear-gradient(45deg, #9dc66b 5%, #4fa49a 30%, #4361c2);
  background-position: top left, center center, center center;
  background-size: auto, cover, cover;
  overflow: hidden;
  position: relative;
  text-align: center;
}
#header h1 {
  margin: 0;
}
#header .inner {
  opacity: 1;
  position: relative;
  z-index: 1;
}

@keyframes float {
  0% {
    filter: drop-shadow(5px 5px 5px #222);
    transform: translate(0px, 0px);
  }
  50% {
    filter: drop-shadow(5px 15px 5px rgba(0, 0, 0, 0.2));
    transform: translate(10px, -15px);
  }
  100% {
    filter: drop-shadow(5px 5px 5px #222);
    transform: translate(0px, 0px);
  }
}
/* Custom */
.header_logo {
  max-height: 13rem;
  filter: drop-shadow(5px 5px 5px #222);
  animation: float 4s ease-in-out infinite;
  transform: translate(0px, 0px);
}

.hidden {
  display: none !important;
}

.logo_joystick {
  max-height: 140px;
  position: absolute;
  bottom: -55px;
  right: -40px;
  cursor: pointer;
  transition: all 0.3s;
  transform: scale(0.75);
}
.logo_joystick:hover {
  bottom: -40px;
  right: -20px;
}

/*# sourceMappingURL=main.css.map */
