@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: 2000px;
  background-attachment: fixed;
  background-repeat: repeat-y;
}
body {
  width: 100%;
  padding: 0px;
  margin: 0px;
}
b {
  font-weight: 1000;
}

nav {
  display: none;
}
.fa-solid {
  color: #fff;
  font-size: 3em;
}
.heroImg {
  width: 100%;
  min-height: 5em;
  background-size: contain;
  background-position: right;
  background-image: url(images/mobile_hero_25.png), linear-gradient(180deg, rgba(38,54,120,1) 0%, rgba(6,51,80,1) 100%);
  /* background-position: center; */
  background-repeat: no-repeat;
}

#main {
  width: 90%;
  margin: 0px auto;
  padding: 1em;
  background-color: #fff;
  color: #252525;
  display: flex;
  flex-direction: column;
  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: 100%;
}
.staff {
  display: block;
}
.staff img {
  width: 50%;
  float:right;
  border: solid #d2d2d2 4px;
  border-radius:  0.5em;
  margin: 0px .5em;
}

.ad {
  flex-shrink: 1;
}
.ad img {
  width: 66%;
  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;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: space-between;
  font-weight: 350;
}
.logo_footer {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  min-width: 5rem;
  min-height: 5rem;
}

.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
}
a .logo_footer {
  display: block;
  text-decoration: none !important;
}
.cred {
  font-weight: 200;
  font-size: small;
  color: #5a5a5a;
  text-align: center;
}

/* Menu */
#navOpen {
  width: 5em;
  min-height: 5em;
  margin: 0px auto;
  background-color: #063350;
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 1em;
  text-align: center;
  z-index: 1;
}

/* The Overlay (background) */
.overlay {
  /* Height & width depends on how you want to reveal the overlay (see JS below) */
  height: 0;
  width: 100%;
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  background-color: #063350; /* Red fallback color */
  /* background-color: rgba(165,13,18, 0.9);  Red w/opacity */
  overflow-x: hidden; /* Disable horizontal scroll */
  transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.overlay-content {
  position: relative;
  top: 25%; /* 25% from the top */
  width: 100%; /* 100% width */
  text-align: center; /* Centered text/links */
  margin-top: 1rem; /* 30px top margin to avoid conflict with the close button on smaller screens */
}

/* The navigation links inside the overlay */
.overlay a {
  padding: .5rem;
  text-decoration: none;
  font-size: 24pt;
  color: #fff;
  display: block; /* Display block instead of inline */
  transition: 0.3s; /* Transition effects on hover (color) */
}

/* When you mouse over the navigation links, change their color */
.overlay a:hover,
.overlay a:focus {
  color: #f1e208;
}

/* Position the close button (top right corner) */
.overlay .closebtn {
  position: absolute;
  top: 15px;
  left: 25px;
  font-size: 60px;
}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
  .overlay a {
    font-size: 20px;
  }
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 25px;
  }
}
