body {
  font: 16px "Lucida Grande", Helvetica, Arial, sans-serif;
  color: #091b59;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

header a {
  text-decoration: none;
}

header {
  padding: 0 20px;
  background-color: #38444d;
  height: 50px;
  display: flex;
  justify-content: space-between;
  margin: 0;
  box-sizing: border-box;
}

#brand {
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

#brand a {
  color: #efefef;
}

ul {
  list-style: none;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul a {
  color: #efefef;
}

ul li {
  padding: 5px;
  margin-left: 10px;
}

ul li:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

#hamburger-icon {
  margin: auto 0;
  display: none;
  cursor: pointer;
}

#hamburger-icon div {
  width: 35px;
  height: 3px;
  background-color: white;
  margin: 6px 0;
  transition: 0.4s;
}

.open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}

.open .bar2 {
  opacity: 0;
}

.open .bar3 {
  -webkit-transform: rotate(45deg) translate(-6px, -8px);
  transform: rotate(45deg) translate(-6px, -8px);
}

.open .mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.mobile-menu {
  font: 24px "Lucida Grande", Helvetica, Arial, sans-serif;
  display: none;
  position: absolute;
  background-color: #232C33;
  top: 50px;
  left: 0;
  width: 100%;
  height: 200%;
}

.mobile-menu li {
  margin-bottom: 10px;
}


li a,
.dropbtn {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover,
.dropdown:hover .dropbtn {
  background-color: red;
}

li.dropdown {
  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: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

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

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

/* spacing */

table {
  table-layout: auto;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
  border: 3px solid black;
}

a {
  color: #091b59;
}

.keeper-yes {
  background-color: #fff000;
}

.TE {
  background-color: #f9cb9c;
}

.RB {
  background-color: #a4c2f4;
}

.WR {
  background-color: #b6d7a8;
}

.QB {
  background-color: #d5a6bd;
}

main {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}


.content_column {
  display: flex;
  justify-content: space-between;
}

.column {
  width: 45%;
  /* Adjusts the column width */
}

.table-data {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20px;
}

.player {
  font-size: 20px;
  background-color: #38444d;
  color: white;
  margin-top: 20px;
}

.blurb {
  margin-bottom: 20px;
}

footer {
  background-color: #38444d;
  color: white;
  padding: 14px 16px 14px 16px;
}

.power-rankings {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
}

.logo {
  background-color: #091b59;
}

.logo-mobile {
  display: none;
}

.welcome {
  align-items: center;
}

@media only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {
  header nav {
    display: none;
  }

  #hamburger-icon {
    display: block;
  }

  .logo {
    display: none;
  }

  .logo-mobile {
    display: block;
    height: 45px;
  }
}