body {
  margin: 0;
  line-height: 1.4;
  font-size: 16px;
  font-family: -apple-system, "system-ui", Aptos, Roboto, "Segoe UI", Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  background: #eee;
}
main {
  padding: 0 20px;
  margin: 100px auto 0 auto;
  max-width: 600px;
}

h3 {
  font-size: 24px;
  color: #333;
}

div.splash {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

div.splash img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
  /* box-shadow: 0 2px 4px 0 rgba(0, 255, 163, 0.3),
    0 4px 8px 0 rgba(3, 225, 255, 0.3), 0 6px 20px 0 rgba(220, 31, 255, 0.3); */
}

.header {
  position: fixed;
  top: 0;
  background-color: #ffd700;
  z-index: 3;
  width: 100%;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
  /* box-shadow: 0 2px 4px 0 rgba(0, 255, 163, 0.3),
    0 4px 8px 0 rgba(3, 225, 255, 0.3), 0 6px 20px 0 rgba(220, 31, 255, 0.3); */
}
.header-content {
  max-width: 600px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px;
  margin: 0 auto;
}
.header-icons {
  display: flex;
  flex-grow: 1;
  justify-content: end;
  padding-top: 8px;
}
.header-social-link {
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#buy-cta {
  position: sticky;
  top: 90px;
  z-index: 1;
}
h1 {
  font-size: 24px;
  padding: 0;
  margin: 0;
}
@media (min-width: 600px) {
  h1 {
    font-size: 36px;
  }
}
.logo {
  width: 50px;
  height: 50px;
  margin-right: 20px;
}
.no-underline:link,
.no-underline:visited {
  text-decoration: none;
  color: inherit;
}

.no-underline:hover,
.no-underline:focus {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0 0 0 15px;
}

p em {
  font-size: 18px;
}
button.cta {
  margin: 0 auto;
  display: flex;
  gap: 5px;
  align-items: center;
}
button.cta img {
  width: 35px;
  /* margin: -10px 0 -10px 0; */
  /* height: 20px; */
  object-fit: contain;
}
ul.meme-assets img {
  max-width: 100px;
  max-height: 50px;
}
ul.meme-assets {
  margin-bottom: 300px;
}
button.cta {
  background-color: #ffd700;
  border: none;
  color: #111;
  padding: 10px 15px;
  font-weight: bold;
  text-align: center;
  font-size: 24px;
  cursor: pointer;
  /* border: 2px solid #dc1fff; */
  border-radius: 10px;
  /* shadow */
  box-shadow: 0 2px 4px 0 rgba(0, 255, 163, 0.3),
    0 4px 8px 0 rgba(3, 225, 255, 0.3), 0 6px 20px 0 rgba(220, 31, 255, 0.3);
}
button.cta:hover {
  background-color: #ffcc00;
  box-shadow: 0 2px 4px 0 rgba(0, 255, 163, 0.8),
    0 4px 8px 0 rgba(3, 225, 255, 0.8), 0 6px 20px 0 rgba(220, 31, 255, 0.8);
  /* border: 2px solid #00ffa3; */
}
.center {
  text-align: center;
}
