body {
  padding: 0px;
  margin: 0px auto;
  width: 100%;
  min-width: 800px;
  max-width: 1200px;
  height: auto;
  overflow-x: hidden;
  overflow-y: scroll;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  background-color: rgba(26, 51, 0, 0.3);
}

header {
  position: relative;
  display: grid;
  background-image: url("..//images/banner.png");
  background-position: left top;
  background-size: cover;
  background-repeat: no-repeat;
  display: grid;
  border: 0px;
  padding: 0px;
  width: 100%;
  max-width: 1200px;
  height: 200px;
  text-align: left;
  grid-template-columns: repeat(4, 25%);
  grid-template-rows: 160px 40px;
  grid-template-areas:
    "logo logo logo logo"
    "menu1 menu2 menu3 menu4";
  place-items: space-around;
  text-align: center;
}

.logo,
.logo a {
  text-decoration: none;
  width: 100%;
  max-width: 1200px;
  height: 160px;
  display: grid;
  grid-area: logo;
  place-content: center;
  border: 0px;
  padding: 0px;
}

.head-tl,
.head-email {
  display: none;
}


.menu1,
.menu2,
.menu3,
.menu4 {
  height: 40px;
  width: 100%;
  display: grid;
  color: white;
  font-size: 1.5em;
  text-decoration: none;
  text-align: center;
}

.menu1 a {
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0);
  color: white;
}

.menu1:hover,
.menu2:hover,
.menu3:hover,
.menu4:hover {
  background-color: darkorange;
  opacity: .9;
}

.menu1 {
  grid-area: menu1;
}

.menu2 {
  grid-area: menu2;
}

.menu3 {
  grid-area: menu3;
}

.menu4 {
  grid-area: menu4;
}

.hamburger {
  display: none;
  position: fixed;
  top: 30px;
  right: 10%;
  height: 50px;
  width: 50px;
  border: none;
  z-index: 99999999;
}

.dropbtn1 {
  display: none;
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: white;
  opacity: 0.2;
  height: 50px;
  width: 50px;
  border: none;
  cursor: pointer;
  z-index: 9999999999999999;
}

.dropbtn:hover {
  background-color: green;
  opacity: 0.4;
  z-index: 9999999999;
}

.dropbtn:focus {
  background-color: red;
}

.dropdown-box {
  background-image: url("..//images/menu-bkg.jpg");
  position: fixed;
  top: 145px;
  left: 0px;
  border: 1px solid white;
  height: 290px;
  width: 100%;
  display: none;
  grid-template-columns: 70%;
  grid-template-rows: repeat(5, 35px);
  grid-template-areas: "lt-col";
  justify-items: center;
  align-items: center;
  z-index: 9999999;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.lt-col {
  position: absolute;
  top: 0px;
  height: 265px;
  width: 100%;
  overflow: none;
  z-index: 999999;
  display: none;
  grid-area: lt-col;
  justify-items: center;
  align-items: center;
  text-decoration: none;
}

.lt-col ul {
  list-style: none;
  padding: 0px 0px 0px 0px;
  display: grid;
}

.lt-col a {
  display: none
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.show {
  display: none;
}

.container {
  height: auto;
  width: 100%;
  padding: 0px 0px 0px 0px;
  display: grid;
  row-gap: 30px;
  grid-area: container;
  grid-template-rows: 120px auto auto;
  grid-template-columns: 25% 25% 25% 25%;
  grid-template-areas:
    "ttle-wide ttle-wide ttle-wide ttle-wide"
    "box1 box2 box3 box4"
    "box5 box6 box7 box8";
  justify-items: center;
  align-items: center;
  padding: 0px 0px 40px 0px
}

.ttle-wide {
  display: grid;
  grid-area: ttle-wide;
  width: 100%;
  height: 140px;
  grid-template-rows: 80px 60px;
  grid-template-columns: 100%;
  grid-template-areas:
    "general"
    "contact-details";
  justify-items: center;
  align-items: center;
  color: brown;
  border: 0px;
  padding: 0px;
}

.general,
.contact-details {
  display: grid;
  grid-area: general;
  width: 100%;
  height: 80px;
  font-size: 1.5em;
  justify-content: center;
  align-items: center;
  color: black;
  border: 0px;
  padding: 0px;
}

.contact-details {
  grid-area: contact-details;
  height: 60px;
  width: 100%;
  color: black;
  font-size: 1.2em;
  grid-template-rows: 40px;
  grid-template-columns: 50% 50%;
  grid-template-areas:
    "head-t head-e";
}

.head-t {
  height: 40px;
  width: 100%;
  display: grid;
  grid-area: head-t;
  justify-content: center;
  align-items: center;
  color: black;
}

.head-e {
  height: 40px;
  width: 100%;
  display: grid;
  grid-area: head-e;
  justify-content: center;
  align-items: center;
  color: black;
}

.head-tl,
.head-email {
  display: none;
}

.box1 {
  display: grid;
  grid-area: box1;
  background-image: url("..//images/fish-legal-160.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  text-align: center;
  width: 100%;
  height: 160px;
}

.box2 {
  display: grid;
  grid-area: box2;
  background-image: url("..//images/sal-trout-con.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  text-align: center;
  width: 100%;
  height: 160px;
}

.box3 {
  display: grid;
  grid-area: box3;
  background-image: url("..//images/bbc-weather.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  text-align: center;
  width: 160px;
  height: 160px;
}

.box4 {
  display: grid;
  grid-area: box4;
  background-image: url("..//images/river-levels-160.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  text-align: center;
  width: 100%;
  height: 160px;
}

.box5 {
  display: grid;
  grid-area: box5;
  background-image: url("..//images/wae-logo-160.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  text-align: center;
  width: 100%;
  height: 160px;
}

.box6 {
  display: grid;
  grid-area: box6;
  background-image: url("..//images/eggleston-hall-160.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  text-align: center;
  width: 100%;
  height: 160px;
}

.box7 {
  display: grid;
  grid-area: box7;
  background-image: url("..//images/lfLogo-160.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  text-align: center;
  width: 100%;
  height: 160px;
}

.box8 {
  display: grid;
  grid-area: box8;
  background-image: url("..//images/tees-river-trust-logo-160.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  text-align: center;
  width: 100%;
  height: 160px;
}

.destext {
  display: grid;
  justify-items: center;
  align-items: center;
  width: 80%;
  height: auto;
  font-size: 14px;
  padding: 15px;
  background-color: rgba(102, 153, 153, 0.7);
  color: white;
  border: 1px solid black;
}

footer {
  padding: 20px 0px 20px 0px;
  height: auto;
  width: 100%;
  display: grid;
  grid-area: ftr;
  grid-template-rows: repeat(3, 40px);
  grid-template-columns: 50% 50%;
  grid-template-areas:
    "key-people key-contacts"
    "item1 item2"
    "bjt bjt";
  background-image: url("..//images/banner.png");
  background-position: bottom center;
  background-color: rgb(113, 113, 113);
  text-align: center;
  font-size: 20px;
  place-items: center;
  color: white;
}

.item1,
.item2 {
  text-decoration-style: none;
  color: white;
}

.key-contacts,
.key-people {
  height: 30px;
  width: 50%;
  color: white;
  text-align: left;
  display: grid;
  grid-area: key-contacts;
  justify-items: center;
  text-decoration: none;
}

.key-people a,
.key-people {
  grid-area: key-people;
  text-decoration: none;
  color: white;
}

.bjt {
  grid-area: bjt;
  text-decoration: none;
}

.key-contacts a,
.key-contacts {
  text-decoration: white none;
  color: white;
}

@media screen and (max-width: 420px) {
  body {
    border: 0px;
    padding: 0px;
    margin: 0px auto;
    width: 100%;
    min-width: 320px;
    height: auto;
    text-align: center;
    overflow-x: hidden;
    overflow-y: scroll;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    background-attachment: fixed;
  }

  header {
    width: 100%;
    height: 160px;
    position: fixed;
    padding: 0px;
    top: 0px;
    display: grid;
    grid-area: header;
    background-image: none;
    background-color: white;
    justify-items: center;
    align-items: center;
    z-index: 99;
    border: 0px;
    padding: 0px 0px 0px 0px;
    width: 100%;
    height: 160px;
    text-align: center;
    grid-template-columns: 50% 50%;
    grid-template-rows: 120px 40px;
    grid-template-areas:
      "logo logo"
      "head-tl head-email";
  }

  .logo {
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 120px;
    z-index: 99;
    display: grid;
    grid-area: logo;
    justify-items: center;
    align-items: center;
    background-image: url("..//images/ehfs-logo.png");
    border: 0px;
    padding: 0px 0px 0px 0px;
  }

  .logo a {
    height: 120px;
  }

  .head-tl {
    height: 40px;
    width: 100%;
    display: grid;
    grid-area: head-tl;
    justify-items: center;
    align-items: center;
    color: black;
  }

  .head-email {
    height: 40px;
    width: 100%;
    display: grid;
    grid-area: head-email;
    justify-items: center;
    align-content: center;
    color: black;
  }


  .hamburger {
    display: block;
    position: absolute;
    background-image: url("..//images/black-lines.png");
    top: 30px;
    right: 10%;
    height: 50px;
    width: 50px;
    border: none;
    z-index: 999999999999;
  }

  .dropbtn {
    display: block;
    position: fixed;
    background-image: url("..//images/black-lines.png");
    top: 30px;
    right: 10%;
    height: 50px;
    width: 50px;
    border: 1px;
    cursor: pointer;
    z-index: 99999999;
  }

  .dropbtn:hover {
    background-color: darkorange;
    opacity: 0.4;
    z-index: 99999999;
  }

  .dropdown-box {
    z-index: 99999999;
    position: fixed;
    top: 145px;
    left: 0px;
    padding: 0px 0px 0px 0px;
    border: 1px solid black;
    height: 360px;
    width: 100%;
    display: grid;
    grid-area: dropdown-box;
    grid-template-columns: 100%;
    grid-template-rows: repeat(5, 40px);
    grid-template-areas: "lt-col";
    justify-items: center;
    align-items: center;
    background-image: url("..//images/menu-bkg.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .lt-col {
    z-index: 99999999;
    position: absolute;
    padding: 0%;
    top: 0px;
    height: 340px;
    width: 80%;
    overflow: none;
    display: grid;
    grid-area: lt-col;
    justify-items: center;
    align-items: center;
    text-decoration: none;
  }

  .lt-col a {
    width: 80%;
    height: 35px;
    color: white;
    padding: 0px;
    z-index: 99999999;
    display: grid;
    text-decoration: none;
    font-size: 18px;
    text-align: center;
    background-color: lightskyblue;
  }

  a:hover {
    list-style: none;
    padding: 0px 0px 0px 0px;
    display: grid;
    background-color: linen;
    z-index: 99999999;
  }

  .show {
    display: none;
  }

  .container {
    height: auto;
    width: 100%;
    padding: 0px 0px 0px 0px;
    display: grid;
    row-gap: 30px;
    grid-area: container;
    grid-template-rows: 120px repeat(8, 220px);
    grid-template-columns: 100%;
    grid-template-areas:
      "ttle-wide"
      "box1"
      "box2"
      "box3"
      "box4"
      "box5"
      "box6"
      "box7"
      "box8";
    justify-items: center;
    align-items: center;
    padding: 0px 0px 40px 0px
  }

  .ttle-wide {
    display: none;
  }

  .box1 {
    display: grid;
    grid-area: box1;
    background-image: url("..//images/fish-legal-160.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    text-align: center;
    width: 100%;
    height: 200px;
  }

  .box2 {
    display: grid;
    grid-area: box2;
    background-image: url("..//images/sal-trout-con.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    text-align: center;
    width: 100%;
    height: 200px;
  }

  .box3 {
    display: grid;
    grid-area: box3;
    background-image: url("..//images/bbc-weather-160.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    text-align: center;
    width: 100%;
    height: 200px;
  }

  .box4 {
    display: grid;
    grid-area: box4;
    background-image: url("..//images/river-levels-160.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    text-align: center;
    width: 100%;
    height: 200px;
  }

  .box5 {
    display: grid;
    grid-area: box5;
    background-image: url("..//images/wae-logo-160.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    text-align: center;
    width: 100%;
    height: 200px;
  }

  .box6 {
    display: grid;
    grid-area: box6;
    background-image: url("..//images/eggleston-hall-160.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    text-align: center;
    width: 100%;
    height: 200px;
  }

  .box7 {
    display: grid;
    grid-area: box7;
    background-image: url("..//images/lflogo-160.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    text-align: center;
    width: 100%;
    height: 200px;
  }

  .box8 {
    display: grid;
    grid-area: box8;
    background-image: url("..//images/tees-river-trust-logo-160.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    text-align: center;
    width: 100%;
    height: 200px;
  }

  .myfooter {
    padding: 0px 0px 0px 0px;
    height: auto;
    width: 100%;
    display: grid;
    grid-area: myfooter;
    row-gap: 10px;
    grid-template-rows: 50px 50px 50px 50px 40px;
    grid-template-columns: 100%;
    grid-template-areas:
      "key-people"
      "key-contacts"
      "item1"
      "item2"
      "bjt";
    background-color: rgba(26, 51, 0, 0.3);
    text-align: center;
    font-size: 16px;
    justify-items: center;
    align-items: center;
  }

  .key-contacts,
  .key-people {
    height: 30px;
    width: 100%;
    color: white;
    text-align: left;
    display: grid;
    grid-area: key-contacts;
    justify-items: center;
    align-items: space-around;
  }

  .key-people {
    grid-area: key-people;
  }

  .item1,
  .item2 {
    width: 100%;
    height: 30px;
    padding: 0% 0% 0% 0%;
    color: white;
    display: grid;
    grid-area: item1;
    justify-items: center;
    align-items: center;
    font-size: 18px;
    text-decoration: none;
  }

  .item2 {
    grid-area: item2;
  }

  .item1 a:hover {
    background-color: gray;
    color: black;
  }

  .item2 a:hover {
    background-color: gray;
    color: black;
  }

  .bjt {
    width: 100%;
    height: 30px;
    padding: 0% 0% 0% 0%;
    text-align: center;
    display: grid;
    grid-area: bjt;
    justify-items: center;
    align-items: center;
    font-size: 12px;
    color: white;
  }

}