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

body {
  display: -ms-grid;
  display: grid;
  min-height: 100%;
  -ms-grid-columns: 20%, 20%, 20%, 20%, 20%;
      grid-template-columns: 20%, 20%, 20%, 20%, 20%;
  -ms-grid-rows: 10rem 1fr;
      grid-template-rows: 10rem 1fr;
      grid-template-areas: "header header header header header " "main main main main main";
}

body header {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-area: header;
  background: rgba(243, 83, 214, 0.774);
  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;
  position: relative;
}

body header img {
  margin: 1rem;
  height: 100%;
}

body header nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 5rem;
  height: 100%;
  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;
}

body header nav > details {
  color: #ffffff;
  font-size: 2em;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
}

body header nav > details:hover {
  -webkit-transform: scale(1.25);
          transform: scale(1.25);
}

body header nav > details > summary {
  cursor: pointer;
  list-style: none;
}

body header nav > details > ul {
  width: 100vw;
  position: absolute;
  top: 10rem;
  left: 0rem;
  background-color: green;
  list-style-type: none;
}

body header nav > details > ul > li > a {
  border-radius: 20px;
  -webkit-box-shadow: 5px 10px black;
          box-shadow: 5px 10px black;
  background-color: antiquewhite;
  padding: 20px 5px;
  display: block;
  font-size: large;
  text-decoration: none;
}

body header nav > details > ul > li > a:hover {
  background-color: #ecac57;
}

body header nav > details > ul > li > a:active {
  -webkit-box-shadow: 1px 2px black;
          box-shadow: 1px 2px black;
  font-size: 16px;
  font-weight: 600;
}

body main {
  width: 100%;
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-area: main;
}

body main div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body main div > button {
  padding: 14px 40px;
  cursor: pointer;
  background-color: #2ab82a;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
}

body main div > button:hover {
  background-color: black;
}

body main div .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  -webkit-box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 4px;
}

body main div .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

body main div .dropdown-content a:hover {
  background-color: #f1f1f1;
}

body main div:hover .dropdown-content {
  display: block;
}

body main #bakelser {
  margin: auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}

body main #bakelser .container {
  background: #e6e6e6;
  gap: 1rem;
  padding: 0.5rem;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body main #bakelser .container img {
  width: 100%;
}

@media screen and (min-width: 700px) {
  body main #bakelser {
    width: 70%;
    gap: 3rem;
  }
  body main #bakelser .container {
    background: #e6e6e6;
    gap: 1rem;
    padding: 1rem;
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  body main #bakelser .container img {
    width: 100%;
  }
}

/* Style the list */
ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
  background-color: #eee;
}

/* Display list items side by side */
ul.breadcrumb li {
  display: inline;
  font-size: 18px;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li + li:before {
  padding: 8px;
  color: black;
  content: "/\00a0";
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
  color: #0275d8;
  text-decoration: none;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
  color: #01447e;
  text-decoration: underline;
}

.skip {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  position: static;
  width: auto;
  height: auto;
}
/*# sourceMappingURL=mall.css.map */