@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
html,
body {
  background-color: #e9e9e9;
  color: #040201;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
  font-family: "Roboto", sans-serif;
  transition: background-color 1s ease-in-out;
}

.container-fluid {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

::-webkit-scrollbar {
  display: none;
  width: 0.5em;
}

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

::-webkit-scrollbar-thumb {
  background-color: #ec9d00;
  border-radius: 2em;
  height: 4em;
}

#button {
  background-color: #ec9d00;
  color: #e9e9e9;
  padding: 0.5em;
  border-radius: 0.5em;
}

#button:hover {
  opacity: 0.9;
  text-decoration: none;
}

.text-wrap h1 {
  font-size: clamp(3rem, 0.95rem + 0.25vw, 1.25rem);
}
.text-wrap h1 span {
  font-weight: bold;
  color: #ec9d00;
}

.text-wrap,
.button-wrap {
  transition: all 1s ease-in-out;
}
.text-wrap p,
.button-wrap p {
  font-size: clamp(1.25rem, 0.5rem + 0.5vw, 1.5rem);
}
.text-wrap a,
.button-wrap a {
  color: #ec9d00;
  text-decoration: none;
}
.text-wrap span,
.button-wrap span {
  color: #ec9d00;
}

.accent span {
  color: #040201;
}

.text-wrap p a:hover, span a:hover {
  text-decoration: underline;
}

nav {
  background-color: rgba(0, 0, 0, 0.7);
  color: #e9e9e9;
  min-height: 4em;
  overflow: hidden;
  transition: all 0.5s ease;
}

.d-show {
  visibility: visible;
  opacity: 1;
}

.d-nshow {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.5s, opacity 0.5s linear;
}

footer {
  height: 4em;
  color: #040201;
  opacity: 0.8;
}

.welcome {
  min-height: 100vh;
  padding-left: 10em;
  padding-right: 10em;
  background-image: url("../images/landscape.jpg");
  background-position: ceneter;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 5000px 5000px 0px rgba(0, 0, 0, 0.7);
  color: #e9e9e9;
}

.rolunk {
  min-height: 100vh;
  padding-left: 10em;
  padding-right: 10em;
}

.image {
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-image: url("../images/worker.jpg");
}

.kapcsolat {
  min-height: auto;
  padding-top: 5vh;
  padding-bottom: 5vh;
  padding-left: 10em;
  padding-right: 10em;
}

.item {
  margin-top: 5vh;
  margin-bottom: 5vh;
}

.map {
  min-height: 90vh;
  min-width: 100%;
  filter: grayscale(100%) invert(92%) contrast(83%);
}

@media screen and (max-width: 992px) {
  .map {
    min-height: 60vh;
    min-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .welcome {
    padding-left: 5em;
    padding-right: 5em;
  }

  .rolunk {
    padding-left: 5em;
    padding-right: 5em;
  }

  .kapcsolat {
    padding-left: 5em;
    padding-right: 5em;
  }

  .map {
    min-height: 50vh;
    min-width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .welcome {
    padding-left: 1em;
    padding-right: 1em;
  }

  .rolunk {
    padding-left: 1em;
    padding-right: 1em;
  }

  .kapcsolat {
    padding-left: 1em;
    padding-right: 1em;
  }

  .map {
    min-height: 40vh;
    min-width: 100%;
  }
}