@import url(components/navbar.css);
@import url(components/contact.css);
@import url(components/footer.css);


:root {
  --primary-color: #ff4081;
  --secondary-color: #4081FF;
  --accent-color: #6a1b9a;
  --tertiary-color: #E1FF40;
  --background-color: #111;
  --background-color-alt: #1d1d1f;
  --text-color: #fff;
}

::selection {
  background-color: var(--accent-color);
}

::-moz-selection {
  background-color: var(--accent-color);
}

html {
  font-size: 18px;
}

html, body {
  width: 100%;
}

.no-overflow-x {
  overflow-x: hidden;
}


body {
  max-width: 100%;
  font-family: Quicksand, Arial, sans-serif;
  background: url('/assets/images/main-background.svg');
  margin: 0;
  padding: 0;
  color: #fff;
  background-color: #111;
  line-height: 2;
}

main {
  max-width: 1200px;
  margin: 5rem auto 0;
  padding: 5vw 5vw 2.5vh;
  background-color: rgba(17, 17, 17, 0.4);
  min-height: calc(80vh - 100px);
}

.section-header {
  position: relative;
  font-size: 2rem;
  margin: 5rem 0 1rem;
  color: var(--primary-color);
  font-weight: bold;
}

.section-header::before {
  content: attr(data-text);
  text-transform: uppercase;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  font-size: 3rem;
  color: transparent;
  text-shadow: 2px 2px 3px var(--accent-color);
  opacity: 0.33;
  transform: translate(0, -1rem);
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}

.section-subheader {
  position: relative;
  font-size: 1.25rem;
  margin: 1rem 0;
  color: var(--primary-color);
  font-weight: bold;
}

.highlight,
.highlight-accent
.highlight-tertiary,
a {
  font-weight: bold;
}

.highlight {
  color: var(--secondary-color);
}

.highlight-accent {
  font-weight: bold;
  color: var(--accent-color);
}

.highlight-tertiary {
  font-weight: bolder;
  color: var(--tertiary-color);
}

a {
  font-weight: bolder;
  color: var(--accent-color);
}

.highlight::selection,
.highlight-accent::selection {
  color: white;
}

@media (max-width: 1200px) {
  main {
    padding: 5rem 5vw 0 10vw;
  }
}

@media (max-width: 620px) {
  main {
    padding: 5vw 5vw 2.5vh;
  }
}

@keyframes waveAnimation {
  0% { transform: rotate( 0.0deg) }
  10% { transform: rotate(7.0deg) }
  20% { transform: rotate(-4.0deg) }
  30% { transform: rotate(7.0deg) }
  40% { transform: rotate(-2.0deg) }
  50% { transform: rotate(5.0deg) }
  60% { transform: rotate( 0.0deg) }
  100% { transform: rotate( 0.0deg) }
}

@keyframes fadeInAnimation {
  0% { opacity: 0;}
  100% { opacity: 100;}
}

@keyframes underlineAnimation {
  0% { width: 0;}
  100% { width: 100%;}
} 

@keyframes growOnHoverAnimation {
	0%, 100% {
		transform: scale(1);
	}
	25% {
		transform: scale(1.05);
	}
	50% {
		transform: scale(0.95);
	}
	75% {
		transform: scale(1.05);
	}
}