/******* Aardvark Zen of Heaven******/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #ddd;
  --box1: #e3e8d7;
  --dark: #333;
  --light: #fff;
  --border: #581184;
  --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;
  width: 100vw;
  line-height: 1.6;
  margin: 0 auto;
  background-color: #7EA601;
  padding-bottom: 100px;
}

.btn {
  background: var(--dark);
  color: var(--light);
  padding: 0.6rem 1.3rem;
}

#wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 50px auto;
  grid-gap: 10px;
  width: 80vw;
  padding-bottom: 30px;
  margin: auto;
  grid-template-areas: "menu menu menu menu menu menu" "box1 main main main main main";
}

.header {
  margin: auto;
}

header h1 {
  font-size: 35px;
}

header p {
  font-size: 18px;
}

.menu {
  grid-area: menu;
}

.top {
  position: relative;
  top: 0;
  left: 0;
  width: 100vw;
  background-image: url(../images/topbg.png);
  background-repeat: repeat;
}

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

/* Begin main area */
.main {
  grid-area: main;
  padding: 18px;
  background-color: #dcdcdc;
  border: medium solid #0a3b14;
  border-radius: 10px;
}

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

.box1 {
  grid-area: box1;
  background: var(--primary);
  border: solid medium var(--border);
  border-radius: 10px;
  text-align: left;
  padding: 1rem 0.5rem 1.8rem 0.3rem;
}

/* Begin Footer Css */
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 7rem;
  right: 0;
  left: 0;
  margin-top: 20px;
  color: #e7e198;
  background-color: #1C6700;
  border-top: rgb(6, 11, 7) 2px solid;
  border-bottom: #22e469 3px ridge;
  text-align: center;
}

@media screen and (min-width: 33em 528px) {
  .wrapper {
    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) {
  .wrapper {
    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 */