/******* Buckaroo River Master******/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #ddd;
  --box1: #e3e8d7;
  --dark: #333;
  --light: #fff;
  --shadow: 0 9px 15px rgba(9, 5, 5, 0.8);
}

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

body {
  position: relative;
  min-height: 100vh;
  max-width: 85vw;
  line-height: 1.4;
  margin: auto;
  background: url(../images/brown.jpg);
  padding-bottom: 100px;
}

img {
  max-width: 100%;
  height: auto;
}

#wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 125px auto;
  grid-gap: 15px;
  margin: 0 auto;
  margin-bottom: 30px;
  grid-template-areas: "header header header header header header" "bread bread bread bread bread bread" "box1 box2 box2 box3 box3 box4" "main main main main main main";
}

.header {
  grid-area: header;
  margin-top: 12px;
  border: 3px solid #000000;
  border-radius: 12px;
  background-color: #ffffff;
  width: 100%;
}

header h1 {
  font-size: 35px;
}

header p {
  font-size: 18px;
}

.breadcrumbs {
  grid-area: bread;
  border-color: #333 2px solid;
  background-color: azure;
}

.menu {
  grid-area: menu;
  border: none;
  margin-top: 5px;
}

.extra {
  grid-area: top;
  height: 364px;
  border: #3a0533 3px solid;
  border-radius: 10px;
  background-image: url(../images/green.jpg);
  background-repeat: repeat;
  max-height: 371px;
}

.responsive {
  max-width: 1200px;
  height: auto;
}

/* Begin main area */
.main {
  grid-area: main;
  padding: 18px;
  background-color: #dcdcdc;
  border: #3a0533 medium solid;
  border-radius: 15px;
  margin-top: 10px;
}

.box1 {
  grid-area: box1;
  background: var(--primary);
  border: black 3px solid;
  border-radius: 20px;
  text-align: center;
  margin-top: 20px;
  padding: 1rem 0.5rem 1.8rem 0.3rem;
  box-shadow: var(--shadow);
}

.box2 {
  grid-area: box2;
  background: var(--primary);
  border: black 2px solid;
  border-radius: 20px;
  text-align: center;
  margin-top: 20px;
  padding: 1rem 0.5rem 1.8rem 0.3rem;
  box-shadow: var(--shadow);
}

.box3 {
  grid-area: box3;
  background: var(--primary);
  text-align: center;
  margin-top: 20px;
  padding: 1rem 0.5rem 1.8rem 0.3rem;
  box-shadow: var(--shadow);
}

.box4 {
  grid-area: box4;
  background: var(--primary);
  text-align: center;
  margin-top: 20px;
  padding: 1rem 0.5rem 1.8rem 0.3rem;
  box-shadow: var(--shadow);
}

.box5 {
  grid-area: box5;
  background: var(--primary);
  text-align: center;
  margin-top: 20px;
  padding: 1rem 0.5rem 1.8rem 0.3rem;
  box-shadow: var(--shadow);
}

/* Begin Footer Css */
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 7rem;
  right: 0;
  left: 0;
  background-color: #ccc5b9;
  border-top: rgb(101, 199, 21) 2px solid;
  border-bottom: #0eecca 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 */