* {
    margin: 0;
}

body {
    max-width: 1000px;
    display: block;
    margin: auto;
    background-image: url(/IMGs/WaterfowlBackground.JPG);
    background-repeat: no-repeat;
    background-size: 130%;
    height: 100vh;
    background-attachment: fixed;
    background-position: center center;
    background-color: #232323;
}

header {
    padding: 2rem 0rem 0rem;
    background-color: #232323; 
}

header .info {
    padding-right: 5rem;
    color:  darkgray;
    padding: 0 5rem;
}

header h1 {
    display: flex;
    justify-content: center;

}

header .state {
    padding-bottom: 1rem;
}

header p {
    display: flex;
    justify-content: center;
}

header img {
    display: block;
    width: 45%;
    margin: auto;
    padding-bottom: 1rem;
}

header ul {
    display: flex;
    justify-content: center;
    gap: 4rem;
    list-style-type: none;
    background-color: hsl(0, 0%, 17%);
    padding: 1.5rem 1.5rem;
    box-shadow: 0px 2px 2px 2px darkgray;
}

header ul li a{
    color: hsl(0, 0%, 47%);
    font-size: larger;
    text-decoration: none;
}

header .active-page {
    color: hsl(0, 100%, 25%);
}

header ul li a:hover{
    color: hsl(0, 100%, 25%);
    text-decoration: overline;
    text-decoration-thickness: 3px;
}

.social-media {
    display: flex;
    margin: auto;
    width: 30%;
    padding-bottom: .75rem;
    gap: 1rem;
}

.social-media a img:hover {
    transition: .6s ease;
    background-color: #bbb;
    padding-bottom: 0;
}

.social-media a img {
    padding: 0 0;
    background-color: #717171;
    margin: auto;
    border-radius: 100%;
}


main, .blindinfo{
    background-color: hsl(0, 0%, 45%);
    padding: 2rem 5rem;
    display: flex;
    gap: 5rem;
    justify-content: space-between;
    color: #191919;
}

main h1, .blindinfo h1, .hunting-areas h1 {
    display: flex;
    justify-content: center;
}

.split, .blind-types, .hunting-areas{
    width: 50%;
}

.split img, .blindinfo img {
    height: 20vh;
}

.split .images, .blindinfo .images {
    display: flex;
    justify-content: center;
    overflow: visible;
    padding: 1rem 0rem;
    gap: -10rem;
}

.split .group, .blindinfo .group {
    rotate: -36deg;
    box-shadow: 5px 5px 5px 2px black;
}

.split .blind, .blindinfo .blind {
    rotate: 26deg;
    box-shadow: 5px 5px 5px 2px black;
}

.dropbtn {
  color: hsl(0, 0%, 47%);
  background-color: hsl(0, 0%, 17%);
  font-size: larger;
  font-family: 'Times New Roman', Times, serif;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 14px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
    background-color: lightgray
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  color: hsl(0, 100%, 25%);
  text-decoration: overline;
  text-decoration-thickness: 3px;
}

main h1, .blindinfo h1 {
    padding-bottom: .5rem;
}

main ul, .blindinfo ul {
    padding: .5rem 0rem 2rem 0rem;
    list-style: none;
}

main ul li, .blindinfo ul li {
    padding: .8rem 0rem 0rem 3rem;
    font-size: large;
}


