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

:root {
  --primary: #ddd;
  --box1: #e3e8d7;
  --dark: #333;
  --light: #fff;
  --border: #2e8b57;
  --cream: #E3D6B8;
  --shadow: 0 1px 5px rgba(104,104,104,0.8);
}

html {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
}

body {
  position: relative;
  min-height: 100vh;
  margin: auto;
  line-height: 1.4;
  margin-left: 75px;
  margin-right: 75px;
  padding-bottom: 100px;
}

#wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 50px 100px 50px auto;
  grid-column-gap: 4px;
  font-weight: 100;
  font-size: 14px;
  grid-gap: 12px;
  margin: 0 auto;
  grid-template-areas: "ex ex ex ex ex ex" "boxcomb boxcomb head head head head" "boxcomb boxcomb head head head head" "box3 box3 head head head head" "main main main main main main";
}

.extra {
  grid-area: ex;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 12px;
  padding-top: 7px;
  border: 1px solid #000000;
  background-image: url("../images/Header.jpg");
}

.boxcomb {
  grid-area: boxcomb;
  padding-top: 9px;
  font-size: larger;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
  background-color: #dfceba;
  border: #333 2px solid;
  border-radius: 25px;
}

.box1 {
  grid-area: box1;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 12px;
}

.box2 {
  grid-area: box2;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 12px;
}

.box3 {
  grid-area: box3;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 12px;
}

.head {
  grid-area: head;
  border: #b2a18e 5px solid;
  border-radius: 25px;
  border-style: ridge;
}

.responsive {
  max-width: 100%;
  height: auto;
}

p {
  font-size: 12px;
}

h1 {
  font-size: 18px;
  color: #008000;
}

h2 {
  font-size: 20px;
  font-weight: 600;
  align-items: center;
  color: #008000;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 38;
  align-items: center;
}

.menu {
  grid-area: m;
}

/* Begin main area */
.main {
  grid-area: main;
  padding: 65px;
  background-color: #fcfcfc;
  border-radius: 25px;
}

/* Boxes Below */
.boxes-below {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-template-rows: minmax 0, auto;
  background: azure;
}

/* Begin Footer Css */
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 7rem;
  right: 0;
  left: 0;
  background-color: var(--cream);
  border-top: rgb(237, 179, 243) 3px solid;
  border-bottom: #2C3A38 3px ridge;
  text-align: center;
}

@media screen and (min-width: 33em 528px) {
  .parent {
    grid-template-columns: 1fr;
    grid-template-areas: "header" "menu" "breadcrumbs" "main" "footer" "box1" "box2" "box3" "box4" "slider" "box5";
  }
  .footer {
    height: 12rem;
  }
}
@media screen and (min-width: 54em 864px) {
  .parent {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "header header" "menu menu" "main max-height: none;" "footer footer" "box1" "box2" "box3" "box4" "slider" "box5";
  }
}/*# sourceMappingURL=template.css.map */