body {
  font-family: sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #444;
}

.title {
  color: #e41612;
}

body {
  background: #2b2b31;
  padding: 0;
  margin: 0;
  height: 100vh;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
}

svg {
  background: #2b2b31;
  fill: none;
}

svg polyline.highway__road,
svg polyline.highway__bridge {
  stroke: #c8c8c8;
}

svg polyline.highway__road--primary,
svg polyline.highway__bridge--primary {
  stroke: #5b5b5b;
  stroke-width: 2;
}

svg polyline.highway__road--secondary,
svg polyline.highway__bridge--secondary {
  stroke-width: 1.5;
  stroke: #8c8c8c;
}

svg polyline.highway__railway {
  stroke: #161619;
  stroke-width: 1;
}

svg polygon.area {
  fill: #3b3c44;
}

svg polygon.area__land--forest,
svg polygon.area__land--grass {
  fill: #858691;
}

svg polygon.area__parking {
  fill: #e7e7e7;
}

svg polyline.highway__waterway {
  stroke: blue;
  stroke-width: 1.5;
}

svg polygon.building {
  fill: #b6b6b6;
}

.hidden {
  display: none;
}

.map {
  margin-right: 0;
  z-index: 1000;
  overflow: hidden;
  overflow-x: scroll;
  width: 100vw;
}

image {
  transform-origin: bottom center;
  transform: translateY(-60px);
}

.second--point {
  background-color: red;
}

.homepage {
  position: absolute;
  height: 100vh;
  width: 100vw;
  color: white;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.homepage::-webkit-scrollbar {
  display: none;
}

.text--homepage {
  text-align: center;
}

.cache--flex {
  display: -ms-flexbox;
  display: flex;
}

.button {
  background: #2af598;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #2af598 0%, #0bb4e4 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  border: inherit;
  padding: 5px 15px;
  color: white;
  font-size: 1.5em;
  border-radius: 7px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

.button--gradiant {
  border: solid #2af598;
  padding: 5px 15px;
  color: white;
  font-size: 1.5em;
  border-radius: 7px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  background-color: inherit;
}

.logo {
  height: 250px;
  width: auto;
}

.title {
  font-family: 'Bangers', sans-serif;
  color: white;
  font-size: 2.5em;
  letter-spacing: 2px;
  margin-top: 0px;
  margin-bottom: 5px;
  margin-right: 30px;
  margin-left: 30px;
}

.explication {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.text-top {
  position: fixed;
  bottom: 0;
  width: 100vw;
  padding: 0 20px;
  text-align: center;
  color: white;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 15px;
  padding-top: 10px;
  margin-bottom: 0;
  font-size: 1em;
  background-color: #2b2b31;
  background-size: 100vw 20vh;
  box-shadow: 0px -4px 8px 0px rgba(0, 0, 0, 0.1);
}

.ready {
  margin-top: 5px;
}

.div--popup {
  display: fixed;
  top: 0;
  height: 100vh;
  width: 100vw;
  z-index: 999;
}

.div--center {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.div--style {
  font-size: 1.5em;
  font-weight: bold;
}

.search {
  background-color: grey;
  border: none;
  height: 40px;
  width: 60vw;
  border-radius: 7px;
  color: white;
  padding: 5px;
  font-size: 0.8em;
  font-family: 'Montserrat', sans-serif;
}

.image {
  height: 200px;
  width: auto;
}

.image--angry {
  height: 350px;
}

.testanim {
  animation-name: page;
  animation-duration: 2s;
}

.anime--size {
  animation-name: size;
  animation-duration: 0.7s;
}

.anime--delay {
  animation: page 2s;
  animation-delay: 2s;
  animation-fill-mode: forwards;
}

@keyframes size {
  from {
    height: 0;
    opacity: 0;
  }
  to {
    height: 300px;
    opacity: 1;
  }
}

.testanim--slowly {
  opacity: 0;
  animation-name: page;
  animation-duration: 2s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}

.testanim--slow {
  opacity: 0;
  animation-name: page;
  animation-duration: 2s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}

.anim--bigger {
  animation: bigger 1s;
  animation-fill-mode: forwards;
}

.anime--rotate {
  animation: rotate 1s;
  animation-fill-mode: forwards;
}

.pirate {
  opacity: 0;
  margin: 50px;
}

.back {
  margin-top: 50px;
  font-size: 1em;
}

@keyframes bigger {
  from {
    height: 250px;
    opacity: 1;
  }
  to {
    height: 2000px;
    opacity: 0;
  }
}

@keyframes page {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(20deg);
  }
  10% {
    transform: rotate(-20deg);
  }
  20% {
    transform: rotate(20deg);
  }
  30% {
    transform: rotate(-20deg);
  }
  40% {
    transform: rotate(20deg);
  }
  50% {
    transform: rotate(-20deg);
  }
  60% {
    transform: rotate(20deg);
  }
  70% {
    transform: rotate(-20deg);
  }
  80% {
    transform: rotate(20deg);
  }
  90% {
    transform: rotate(-20deg);
  }
  100% {
    transform: rotate(20deg);
  }
}

/*# sourceMappingURL=app.css.map */
