* {
  margin: 0px;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

p, li {
  font-size: 16px;
}

header {
  padding-right: 300px;
  padding-left: 300px;
  height: 6rem;
  width: 100%;
  height: 100px;
}
header .header-content {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .nav-el {
  position: relative;
}
header .nav-el::after {
  background: white;
  bottom: -5px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  width: 100%;
}
header .nav-el:hover::after {
  -webkit-transform: scaleX(1.1);
          transform: scaleX(1.1);
}
@media screen and (width < 1536px) {
  header {
    padding-right: 100px;
    padding-left: 100px;
  }
}
@media screen and (width < 1280px) {
  header {
    padding-right: 25px;
    padding-left: 25px;
  }
}

main {
  min-height: calc(100vh - 6rem);
  width: 100%;
  padding-right: 300px;
  padding-left: 300px;
  padding-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
@media screen and (width < 1536px) {
  main {
    padding-right: 100px;
    padding-left: 100px;
  }
}
@media screen and (width < 1280px) {
  main {
    padding-right: 25px;
    padding-left: 25px;
  }
}

footer {
  padding-right: 300px;
  padding-left: 300px;
  height: 300px;
  width: 100%;
}
@media screen and (width < 1536px) {
  footer {
    padding-right: 100px;
    padding-left: 100px;
  }
}
@media screen and (width < 1280px) {
  footer {
    padding-right: 25px;
    padding-left: 25px;
  }
}

.black-selection ::-moz-selection {
  background-color: black;
  color: white;
}

.black-selection ::selection {
  background-color: black;
  color: white;
}

.white-selection ::-moz-selection {
  background-color: white;
  color: black;
}

.white-selection ::selection {
  background-color: white;
  color: black;
}

.trans-menu {
  background-color: black;
  position: absolute;
  top: calc(100% + 5px);
  right: -25%;
  color: white;
  -webkit-transition: all 5s ease;
  transition: all 5s ease;
  height: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 5px;
  z-index: 1;
  font-size: 16px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.loadingScreen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 9999;
}

.current {
  text-decoration: underline;
  color: black;
}