* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0px;
  margin: 0px;
}

body {
  height: 100vh;
}

div#container {
  background-color: #e6e6e6;
  min-height: 100vh;
  display: -ms-grid;
  display: grid;
  text-align: center;
  -ms-grid-columns: 10fr 10fr 60fr 10fr 10fr;
      grid-template-columns: 10fr 10fr 60fr 10fr 10fr;
  -ms-grid-rows: 100px 50px 1fr 100px;
      grid-template-rows: 100px 50px 1fr 100px;
      grid-template-areas: " header header header header header  " " menu     menu    menu     menu    menu" "     main   main     main    main  main     " " footer footer footer footer footer ";
}

div#container > .tophead {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-area: header;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 10%;
  background-color: white;
}

div#container > .tophead > nav {
  background-color: white;
}

div#container > .tophead > nav > ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px;
  gap: 3rem;
}

div#container > .breadcrumbs {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-area: menu;
  background-color: white;
  margin: 5px 0px 0px 0px;
}

div#container > main {
  margin: 5px 0px;
  background-color: white;
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-area: main;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

div#container > main > .produkt {
  text-decoration: none;
}

div#container > main > .produkt > article {
  background-color: brown;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 10px;
  margin: 10px;
  color: #000000;
}

div#container > main > .produkt > article > p {
  margin: 3px;
}

div#container > main > .produkt > article > img {
  margin: 10px;
  width: 200px;
  height: 200px;
}

div#container > main > article#kontakt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 50%;
  min-width: 200px;
}

div#container > main > article#kontakt > H1 {
  margin: 10px;
  font-size: 1.5rem;
}

div#container > main > article#kontakt > form > input {
  margin: 0px 0px 20px 0px;
  width: 100%;
  height: 2rem;
}

div#container > main > article#kontakt > form > input#meddelande {
  height: 10rem;
}

div#container > main > div#baldur {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

div#container > main > div#baldur > img {
  padding: 10px 0px 50px 0px;
  width: 200px;
}

div#container > main > div#main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

div#container > main > div#main > img {
  padding: 10px 0px 50px 0px;
  width: 200px;
}

div#container > footer {
  background-color: white;
  -ms-grid-row: 4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-area: footer;
}

@media only screen and (min-width: 768px) {
  div#container {
        grid-template-areas: " header header header header header  " " .     menu    menu     menu    ." "     .   main     main    main  .     " " footer footer footer footer footer ";
  }
  div#container > .breadcrumbs {
    background-color: #92ff77;
  }
  div#container > main {
    background-color: white;
  }
  div#container > main > div#baldur > img {
    width: 500px;
  }
  div#container > main > div#main > img {
    width: 500px;
  }
}

@media only screen and (min-width: 992px) {
  div#container > .breadcrumbs {
    background-color: #6898ff;
  }
  div#container > main {
    background-color: white;
  }
}
/*# sourceMappingURL=mall.css.map */