@import url("https://fonts.googleapis.com/css2?family=Gloock&family=Montserrat:wght@100;300;500&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  background-color: black;
}

.menu {
  scroll-behavior: smooth;
  width: 100%;
  height: 6vh;
  color: white;
  position: fixed;
  background-color: rgb(179, 20, 20);
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.menu a {
  text-decoration: none;
  color: white;
  font-size: 2em;
}

.wrapper {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  background: url("../img/back.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  letter-spacing: 5px;
  text-align: center;
}
.wrapper h1 {
  color: white;
  text-transform: uppercase;
  font-size: 2.5em;
}
.wrapper h1 span {
  color: rgb(179, 20, 20);
  font-size: 1em;
}
.wrapper span {
  color: white;
  font-size: 0.8em;
}

.about {
  display: flex;
  background-color: rgb(32, 32, 32);
  width: 100%;
  min-height: 80vh;
  text-align: center;
  flex-flow: column;
  color: white;
}
.about h2 {
  padding: 1em;
}
.about .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.about .text {
  text-align: justify;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}
.about .text p {
  width: 70%;
}
.about .photos {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about .photos img {
  width: 700px;
}

.contact {
  background-color: white;
  width: 100%;
  min-height: 60vh;
  display: flex;
  justify-content: center;
  flex-flow: column;
  text-align: center;
  padding: 2em 0em;
}
.contact .contText {
  padding: 2em;
  max-width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
}
.contact .contText .item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}
.contact .contText .item i {
  font-size: 2em;
  color: rgb(179, 20, 20);
}
.contact .contText .item a {
  text-decoration: none;
  color: black;
}
.contact .contText .item p {
  font-size: 1.2em;
}
.contact #embed-map-canvas {
  height: 40vh;
}

.footer {
  width: 100%;
  height: 10vh;
  background-color: rgb(32, 32, 32);
  color: grey;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-flow: column;
  font-size: 0.8em;
}
.footer .made {
  margin-top: -10px;
}

.menupark {
  width: 100%;
  height: 6vh;
}

@media only screen and (max-width: 1400px) {
  .about .row {
    display: flex;
    flex-flow: column;
  }
  .about .row .text p {
    width: 90%;
  }
  .about .row .photos img {
    width: 90%;
    padding: 3em 0em;
  }
  .contact .contText {
    flex-flow: column;
  }
  .menu {
    height: 8vh;
  }
  .wrapper {
    background-attachment: unset;
  }
}/*# sourceMappingURL=style.css.map */