/**
  Defaults & Importants
**/
:root {
  --navText: #fff;
  --backgroundColor: #20263e;
}

html {
  scroll-behavior: smooth !important;
  scroll-padding-top: 7rem;
}

section {
  margin-top: 5rem;
}

* {
  margin: 0;
  padding: 0;
  font-family: 'League Spartan', sans-serif;
  color: var(--navText);
  font-size: 1.2rem;
  font-weight: 400;
}

.container {
  width: 80%;
  margin: auto;
  margin-top: 5rem !important;
  margin-bottom: 2rem !important;
}

.languageText {
  position: relative;
  display: inline-block;
}

#languageTip {
  transition: all 2s;
  width: 120px;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 1rem 0;
  
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 50%;
  margin-left: -60px;
}

h1 {
  font-size: 3rem;
  font-family: 'Lobster', serif;
  margin-bottom: 1rem;
}


h2 {
  color: #04bd0a;
}

h2 {
  font-size: 2rem;
  margin: 2rem 0 1rem 0;
  border-left: #04bd0a 3px solid;
  font-weight: bold;
  padding-left: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem 0;
}

body {
  background-color: var(--backgroundColor);
}

@media only screen and (max-width: 1000px) {
  #navbar {
    display: none !important;
  }

  #mobNav {
    display: flex !important;
  }
  nav ul {
    padding-right: 0 !important;
  }
}

.hide {
  display: none !important;
}

/**
  Navigatie-styles
**/

#mobNav {
  display: flex;
  flex-direction: column;
  width: 100%;
  top: 0px;
  position: fixed;
  transition: 1s;
  z-index: 99;
}

#mobNav > div {
  display: flex;
  justify-content: space-between;
}

.navColor {
  transition: 1s;
  background-color: #080a10;
}

#toggleMobNav {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: center;
}

#mobLinks {
  flex-direction: column;
}

#mobLinks > li:first-child {
  border-top: #fff 3px solid;
}

#mobLinks > li:last-child {
  border-bottom: #fff 5px solid;
}

.mobLink {
  border-bottom: #fff 3px solid;
  text-align: center;
  padding: 0;
}

.mobLink a {
  display: block;
}

#navbar {
  position: fixed;
  top: 0px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: var(--navText);
  transition: 1s;
  z-index: 99;
  align-items: center;
  text-align: center;
}

#mobNav {
  display: none;
}

nav ul {
  display: flex;
  justify-content: space-evenly;
  list-style-type: none;
}

nav ul #navbar {
  align-items: center;
}

nav p,
nav li {
  padding: 1rem 1rem 1rem 1rem;
}

nav p {
  padding-left: 1.8rem;
}

nav ul,
nav p:last-child {
  padding-right: 3rem;
}

nav a {
  text-decoration: none;
  color: var(--navText);
  padding: 1rem;
}

nav p a {
  font-family: 'Lobster', serif !important;
  font-size: 2rem;
  justify-content: center;
}

/* Underline on hover */
.hover-underline-animation {
  display: inline-block;
  position: relative;
  color: #fff;
}

.hover-underline-animation:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/**
  Footer
**/
footer {
  background-color: #080a10;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-top: 5rem;
}

footer p {
  margin: 1.5rem;
  font-size: 1.2rem;
  font-weight: 200;
}

footer p:last-child {
  align-self: flex-end;
  position: absolute;
}

footer img {
  width: 1.2rem;
  transform: rotate(180deg);
  margin-right: 1rem;
  box-shadow: none !important;
}

#backTop {
  margin: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

a {
  color: #fff !important;
  text-decoration: none !important;
}

a span {
  color: #04bd0a !important;
  text-decoration: underline !important;
  margin-right: 0.2rem !important;
}

.bold {
  font-weight: bold;
}