/******* Blue Streak Towing Helaman ******/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

body {
  min-height: 100vh;
  width: 100%;
  line-height: 1.4;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0 auto;
  background: url(../images/brown.jpg);
  padding-bottom: 100px;
}

.top-bar {
  position: left top;
  background-color: #02000b;
  border: none;
  width: 100%;
  height: 225px;
}

#head {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto-fit;
  background-color: #000000;
  grid-template-areas: "name name name name phone phone";
}

.name {
  grid-area: name;
}

.phone {
  grid-area: phone;
  color: #fff;
  width: 100%;
  background-color: #000000;
  border: #f48a8a 2px solid;
}

.one {
  margin: 0 auto;
}

#wrapper {
  display: grid;
  width: 80%;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 50px auto;
  grid-template-areas: "me me me me me me" "main main main main main main" "foot foot foot foot foot foot";
}

.header {
  grid-area: head;
  width: 100%;
  height: 235px;
  background: #02000b;
  margin-top: -5px;
  margin-bottom: 20px;
}

p {
  font-family: Arial, Helvetica, sans-serif;
}

header h1 {
  font-size: 35px;
}

header p {
  font-size: 18px;
}

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

.menu {
  grid-area: me;
  margin-bottom: 1rem;
  padding-top: 3px;
  border: none;
}

h1 {
  font-size: 18px;
}

h2 {
  font-size: 2rem;
}

/* Begin main area */
.main {
  grid-area: main;
  margin-top: 0.3rem;
  padding: 18px;
  border-radius: 25px;
  background-color: #dcdcdc;
  border: 3px solid #161514;
}

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

.box {
  background: var(--primary);
  text-align: center;
  padding: 1rem 0.5rem 1.8rem 0.3rem;
  box-shadow: var(--shadow);
}

/* Begin Footer Css */
.footer {
  grid-area: foot;
  display: grid;
  color: #ddd;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 7rem;
  right: 0;
  left: 0;
  background-color: #4756a7;
  border-top: rgb(237, 179, 243) 2px 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 */