@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,400;0,600;0,700;0,800;1,400&display=swap');
* {
  box-sizing: border-box;
}
html {
  height: 100%;
  background-color: #6852a2;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  background-image: url(bg_24.png);
  background-size: 4000px;
  background-attachment: fixed;
  background-repeat: repeat-y;
}
body {
  width: 100%;
  padding: 0px;
  margin: 0px;
}
nav {
  width: 80%;
  margin: 0px auto;
  color: #fff;
  position: sticky;
  top: 0px;
  max-height: 10vh;
}
#navOpen,
#myNav {
  display: none;
}
.heroImg {
  width: 100%;
  height:45vh;
  background-size:contain;
  background-position: center;
  background-image: url(images/hero_25.png);
  background-repeat: no-repeat;
}

#main {
  width: 80%;
  margin: 0px auto;
  padding: 1em;
  background-color: #fff;
  color: #252525;
  display: flex;
  gap: 0.5em 1em;
}
#main a {
  color: #6852a2;
  text-decoration: underline;
}
#main a:hover {
  color: #063350;
  text-decoration: underline;
}
#main h1, h2, h3 {
  color: #000;
}
.content {
  width: 90%;
  flex-grow: 1;
}
.staff {
  display: block;
}
.staff img {
  width: 15rem;
  float:right;
  border: solid #d2d2d2 4px;
  border-radius: 0.5em;
  margin: 0px .5em;
}
.staff::after {
  content: "";
  clear: both;
  display: table;
}

.ad {
  width: 25%;
}
.ad img {
  min-width: 66%;
  max-width: 10rem;
  display: block;
  margin: auto;
}

footer {
  background-color: #000;
  color: #fff;
  padding: 0.5rem;
  width: 100%;
}
.foot {
  width: 80%;
  margin: 0px auto;
  padding: 0.5rem 1rem;
  display: flex;
  gap: 1em;
  justify-content: space-between;
  font-weight: 350;
}
.logo_footer {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 5rem;
  height: 5rem;
  align-self: center;
  justify-self: center;
}
.sq {
  background-image: url(images/SQG_LOGO_RGBBadge.png);
}
.wn {
 background-image: url(images/whatnot_logo_footer.png);
}
.foot ul {
  list-style-type: square;
  list-style-position: inside;
  padding-left: 0;
}
.foot li {
  margin-left: .5rem;
  text-indent: .5rem;
}
.foot a {
  text-decoration: underline;
  color: #fff
}
.foot a:hover {
  color: #f1e208;
}
a .logo_footer {
  display: block;
  text-decoration: none !important;
}

.cred {
  font-weight: 200;
  font-size: small;
  color: #5a5a5a;
  text-align: center;
}

/* menu */
.topnav {
  background-color: #063350;
  height: inherit;
  font-size: 16px;
}
/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #fff;
  text-align: center;
  padding: 0.5em 1em;
  text-decoration: none;
}
/* Change the color of links on hover */
.topnav a:hover {
  background-color: #f1e208;
  color: #252525;
}

/* Add a color to the active/current link */
.topnav a.active, div.active {
  background-color: #f1e208;
  color: #252525;
}
/* Dropdown Button */
.dropbtn {
  color: white;
  padding: 0.5em 1em;
  border: none;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1e208;
  box-shadow: 0px 0.5em 1em 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border: solid #f1e208 2px;
  border-radius: 0.5em;
  margin-top: .1em;
  width: 10rem;
}
/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 0.5em 1em;
  text-decoration: none;
  display: block;
  width: 100%;
  transition: 0.5s ease;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #fff;
  border-radius: 0.5em;

}
/* Show the dropdown menu on hover*/
.dropdown:hover .dropdown-content {
  display: block;
  left: 0;
}
/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  color: #252525;
  background-color: #f1e208;
}
/* tablet */
@media (pointer: coarse) and (pointer: none) {
  /* Change color of dropdown links on tap */
.dropdown-content a:hover,
.dropdown-content a:focus {
  background-color: #fff;
}
/* Show the dropdown menu on hover*/
.dropdown:hover .dropdown-content,
.dropdown:focus .dropdown-content {
  display: block;
  left: 0;
}
/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn,
.dropdown:focus .dropbtn {
  color: #252525;
  background-color: #f1e208;
}
}