:root {
  --primary-text-color: #000000;
  --secondary-text-color: #0101a2;
  --tertiary-text-color: #e2e2ff99;
  --primary-box-shadow: 0px 5px 25px 5px #6d6d6d;
  --secondary-box-shadow: 0px 5px 25px 5px #d3d3d3;
}

/* SCROLLBAR______________________________________________________________________________________*/

::-webkit-scrollbar {
  width: 0.75vw;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #363636;
  border-radius: 2vw;
}

::-webkit-scrollbar-thumb:hover {
  background: #494949;
}

/* SETUP _________________________________________________________________________________________*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  max-height: 100vh;

  background: url(../resources/images/main/background.jpg) repeat-y;
  -webkit-background-size: 25% 10%;
  -moz-background-size: 25% 10%;
  -o-background-size: 25% 10%;
  background-repeat: repeat;

  font-family: "Georgia";
  font-size: 1.15vw;
  overflow: overlay;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
  font-weight: normal !important;
}

.div-warning {
  display: none;
}

/* HEADER LOGO ___________________________________________________________________________________*/

.logo-text {
  position: absolute;
  height: 10vh;
  top: 0;
  margin: 0 0 0 7.5vw;
  transition-duration: 250ms;
}

.logo-text:hover {
  filter: brightness(150%);
  transform: scale(1.05);
}

/* HEADER ________________________________________________________________________________________*/

.div-menu {
  position: absolute;
  top: 0;
  padding: 0 7.5vw 0 7.5vw;

  width: 100vw;
  height: 10vh;

  box-sizing: border-box;
  background: #363636;
  border-bottom: 2px solid #ffffff;

  -webkit-box-shadow: var(--primary-box-shadow);
  box-shadow: var(--primary-box-shadow);
}

.div-menu ul {
  position: relative;
  margin: 5vh 0 0 1vh;
  padding: 0;
  display: flex;
  float: right;
}

.div-menu ul li {
  list-style: none;
}

.div-menu ul li a {
  position: relative;
  display: block;
  font-size: 1.05em;
  padding: 0 1.5vw;
  margin: 0 0 2.5vh 0;
  text-decoration: none;
  color: #d3d3d3;
  font-weight: bold;
  transition: 250ms;
}

.div-menu ul li a:hover {
  color: white;
  transform: scale(1.15);
}

.active-page {
  filter: brightness(150%);
  -webkit-text-stroke-width: 0.005vw;
  -webkit-text-stroke-color: #ffffff;
}

/* BANNER ________________________________________________________________________________________*/

.banner {
  position: relative;
  margin: 17.5vh auto 7.5vh auto;
  padding: 0;
  width: 85%;
  height: 52.5vh;

  background: url(../resources/images/main/banner.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;

  -webkit-box-shadow: var(--primary-box-shadow);
  box-shadow: var(--primary-box-shadow);
}

/* FOOTER ________________________________________________________________________________________*/

footer {
  position: relative;
  bottom: 0;
  margin: 0 0 0 0;
  width: 100%;
  height: 10vh;
  background-color: #161616;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 2px solid #ffffff;
  -webkit-box-shadow: var(--primary-box-shadow);
  box-shadow: var(--primary-box-shadow);
}

footer h2 {
  color: white;
  font-size: 1em;
  text-decoration: none;
  margin: 0;
}

footer h2 a {
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: #00bff3;
  color: #00bff3;
  text-decoration: none;
  transition: 250ms;
}

/* MEDIA QUERY ___________________________________________________________________________________*/

@media (min-width: 320px) and (max-width: 1024px) {
  body {
    font-size: 1.5vw;
  }

  .logo-text {
    transform-origin: center left;
    transform: scale(0.6);
  }

  .logo-text:hover {
    transform-origin: center left;
    transform: scale(0.75);
  }

  .banner {
    margin-top: 15vh;
    margin-bottom: 5vh;
    height: 20vh;
  }

  footer h2 {
    font-size: 1.3em;
  }
}
