* {
  font-family: "montserratregular", sans-serif;
  box-sizing: border-box;
  scroll-margin-top: 1px;
}
@media screen and (min-width: 800px) {
  * {
    scroll-margin-top: 50px;
  }
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  --background: rgb(43, 43, 43);
  --backgroundDark: rgb(33, 34, 34);
  --main: #4c585e;
  --mainLight: rgb(133, 224, 220);
  --mainDark: rgb(21, 28, 31);
  --accent: rgb(0, 255, 234);
  --error: red;
  --textLight: #fbf6ef;
  --textDark: #333333;
  --gradient: linear-gradient(to right, --mainDark 20%, --main 150%);
  --gradientActive: linear-gradient(
      to right,
      --main 20%,
      --mainLight 150%
  );
  --boxShadow: 1px 1px 5px rgba(0, 0, 0, 0.25);
  --boxShadowFocus: 1px 1px 5px --main;
  --border: 3px solid --main;
  --borderRLarge: 10px;
  --borderRSmall: 3px;
  --navSize: 100vw;
  --bodySize: 100vw;
  --maxWidthContent: 1024px;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-color: var(--background);
}

@media only screen and (min-width: 800px) {
  html,
  body {
    --navSize: 800px;
    --bodySize: 70%;
  }
}
main {
  background-color: var(--background);
  pointer-events: none;
  box-shadow: var(--boxShadow);
}

a {
  color: var(--textLight);
  transition: all 0.25s;
  text-decoration-color: var(--main);
}

a:hover {
  color: var(--mainLight);
}

p {
  /* font-family: Arial, Helvetica, sans-serif; */
  font-size: 1.2rem;
  line-height: 1.8rem;
}

.responsiveLine {
  display: block;
}

@media screen and (min-width: 800px) {
  .responsiveLine {
    display: inline-block;
  }
}
.fusch {
  opacity: 0;
  height: 1px;
  font-size: 1px;
  cursor: default;
}

.marginTop {
  margin-top: 2rem;
}

.buffer {
  width: 100%;
  height: 6rem;
  display: block;
  clear: both;
}

.bufferSmall {
  width: 100%;
  height: 1.5rem;
  display: block;
  clear: both;
}

.dropShadow {
  box-shadow: var(--boxShadow);
}

.dropShadow:hover {
  box-shadow: var(--boxShadowFocus);
}

#pageUp {
  position: fixed;
  bottom: 2em;
  right: 2em;
  width: 55px;
  height: 55px;
  padding: 15px;
  background-color: var(--main);
  color: white;
  cursor: pointer;
  border-radius: var(--borderRSmall);
  opacity: 0;
  transition: opacity 1s;
  z-index: 20;
}
#pageUp img {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.bufferMobile {
  width: 100%;
  height: 40vh;
  display: block;
  clear: both;
}
@media only screen and (min-width: 800px) {
  .bufferMobile {
    height: 0;
  }
}

.btn {
  padding: 18px 24px;
  border: none;
  border-radius: 5px;
  background-color: var(--main);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  transition: 0.3s;
  text-decoration: none;
  pointer-events: all;
}

.btn:hover {
  background-color: rgba(52, 145, 145, 0.452);
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: auto;
  scrollbar-color: var(--main) #f5f5f5;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 16px;
}

*::-webkit-scrollbar-track {
  background: #f5f5f5;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--main);
  border-radius: 10px;
  border: 3px solid #ffffff;
}

#cookieContainer1 {
  width: 100%;
  z-index: 900000;
  min-height: 170px;
  padding-top: 0.5rem;
  background-color: #e9e9e9;
  position: fixed;
  bottom: 0;
  text-align: center;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.55);
}
#cookieContainer1 button {
  padding: 1rem 3rem;
  outline: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  margin: 0.5rem;
}
#cookieContainer1 button:hover {
  filter: brightness(110%) saturate(90%);
}
#cookieContainer1 #cookieBtnAgree {
  background-color: var(--main);
  color: #ebeff4;
}
#cookieContainer1 #cookieBtnDeny {
  background-color: gray;
  color: white;
}/*# sourceMappingURL=main.css.map */