* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* z-index: 0; */
  position: relative;
  overflow-x: hidden;
}

/*Mobil*/
body::-webkit-scrollbar {
  display: none;
}

/* removes scrollbar */

body {
  background-color: #fcfff5;
  height: 100%;
  /* color: #193441; */
}

h3 {
  padding-top: 20px;
  font-size: 30px;
  padding-left: 2vw;
  grid-area: h3;
  height: fit-content;
  width: 60vh;
}

h2 {
  padding-top: 2vh;
}

footer {
  padding-left: 0;
}

p {
  border-radius: 25px;
  background: #91aa9d;
  box-shadow: 9px 10px 5px rgba(145, 170, 157, 0.6);
  left: 3vw;
  width: 80vw;
  height: fit-content;
  font-size: 20px;
  padding: 10px;
}

h1 {
  display: flex;
  align-items: center;
  color: #fcfff5;
}

#headSpace {
  flex: 1;
}

#header {
  display: flex;
  height: 8vh;
  background-color: rgba(62, 96, 111, 255);
  position: fixed;
  width: 100vw;
  z-index: 10;
}


#MenuIcon {
  width: 10vh;
  height: 100%;
  min-width: 40px;
  min-height: 40px;
}

.openMenu {
  height: 0%;
  width: 100%;
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  background-color: rgb(0, 0, 0);
  background-color: rgba(20, 20, 20, 1);
  overflow-y: hidden;
  transition: 1s cubic-bezier(.88, -0.02, .24, 1.01);
}

.content {
  display: flex;
  flex-direction: column;
  padding-top: 100px;
  width: 100vw;
  text-align: center;
  margin-top: 30px;
  z-index: 8;
}

.openMenu a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.openMenu a:hover,
.openMenu a:focus {
  color: #f1f1f1;
  transition: 0.4s;
}

.close {
  text-align: right;
  right: 20px;
  top: 10vh;
}

#descIntro {
  height: 450px;
  grid-area: DI;
  background-color: #91aa9d;
  margin-top: 50px;
  font-size: 80px;
}

.vl {
  border-left: 6px solid #193441;
  height: 450px;
  float: right;
  right: 10%;
}

#descMap {
  text-decoration: none;
  font-size: 30px;
  color: #3e606f;
  padding-left: 2vw;
  transition: 0.7s;
}

/* 
#descMap:hover {
  font-size: 35px;
  color: #638999;
} */

.arrow {
  border: solid black;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  width: 50px;
  height: 50px;
  position: relative;
  left: 75vw;
  margin-top: 8vh;
  transition: 1s;
}

.arrow:hover {
  border-bottom-width: 4px;
  border-right-width: 4px;
  margin-top: 12vh;
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.img {
  width: 300px;
  /* height: auto; */
  margin: 5vh;
  padding-top: 10vh;
  z-index: 1;
}

#img1 {
  grid-area: img1;
}

#img2 {
  grid-area: img2;
}

.menu .closeMenu {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

.menu {
  overflow-y: auto;
}

.menu a {
  font-size: 20px
}

.menu .closeMenu {
  font-size: 40px;
  top: 15px;
  right: 35px;
}

#one {
  grid-area: p1;
}

#two {
  grid-area: p2;
}

#three {
  grid-area: p3;
}

#Pf {
  grid-area: pf;
}

#main {
  padding-top: 75px;
  display: grid;
  width: 90%;
  height: auto;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 100px 150px 500px 1fr 500px 60px 1fr;
  grid-template-areas:
    "h3 h3 ."
    "p1 p1 p1"
    "img1 img1 ."
    "p2 p2 p2"
    "img2 img2 ."
    "pf pf ."
    "p3 p3 .";
}

#descIntro {
  display: none;
}

#img1 {
  margin-top: 15vh;
}

@media only screen and (min-width: 600px) {

  /*Tablet*/
  #main {
    padding-top: 0;
    display: grid;
    width: 90%;
    height: auto;
    left: 10%;
    grid-template-columns: 300px repeat(2, 1fr);
    grid-template-rows: 50px 120px 1fr 1fr 50px 1fr 1fr;
    grid-template-areas:
      "h3 h3 ."
      "p1 p1 p1"
      "img1 . ."
      "p2 p2 p2"
      "pf . ."
      "p3 p3 p3"
      "img2 . .";
  }

  #Pf {
    margin-left: 10px;
  }

  #header {
    display: flex;
    height: 100vh;
    background-color: rgba(62, 96, 111, 255);
    position: fixed;
    width: 10%;
    z-index: 10;
  }

  p {
    background: none;
    box-shadow: none;
  }

  #MenuIcon {
    height: 8%;
  }

  h1 {
    display: none;
  }

  .img {
    padding-top: 0;
  }

  footer {
    padding-left: 75px;
  }

  #img1 {
    margin-left: 2vw;
    margin-top: 17vh;
  }
}

@media only screen and (min-width: 800px) {

  /*Desktop*/
  #main {
    margin-top: 10vh;
    display: grid;
    width: 100%;
    height: auto;
    left: 0%;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 500px 50px 50px 150px 1fr 50px 1fr;
    grid-template-areas:
      "DI DI DI"
      ". . ."
      "h3 h3 h3"
      "p1 p1 p1"
      "img1 p2 p2"
      "pf pf ."
      "p3 p3 img2";
  }

  h3 {
    padding: 2vh 0 0 2vh;
  }

  p {
    width: 90%;
    margin-bottom: 5vh;
  }

  #header {
    height: 10%;
    width: 100%;
  }

  #MenuIcon {
    height: 9vh;
    width: 10vh;
  }

  #descIntro {
    display: block;
  }

  .img {
    margin: 0;
    width: 350px;
  }

  #img1 {
    margin-left: 2vw;
    margin-top: 5vh;
  }

  #one {
    margin-top: 4vh;
  }

  footer {
    padding-left: 0;
  }
}