body {
    background-color: black;
    color: #e0e0d0;
    font-family: Helvetica, arial, sans-serif; 
    font-size: 16px;
    line-height: 150%;
}

h1, h2, h3 {
  font-family: 'Orbitron', 'Segoe UI', 'Roboto', 'Arial', sans-serif;
}

h3 {
    font-size: 20px;
    font-weight: 300;
    color: #dd9920;
}

a {
    color:inherit;
    text-decoration: underline;

}

footer{
    margin-top: 30px;
    color: #aaaaaa;
    padding-top:12px;
    justify-content: center;
    display:block;
    text-align: center;
    font-size:8pt;
    line-height: 150%;
    height: 60px;
    background-color: #202020;
}

.thinGrey {
    border: 0;
    border-top: 1px solid #202020;
    width: 100%;
    height: 0px;
    margin: 0;
    justify-self: center;
    margin: 30px 0px 30px 0px;
  }

.mainLogo {
    width: 600px;
    align-items: center;
}

.container {
    display: flex;
    justify-content: center;
}

.mainColumn{
    max-width: 800px;

}

.video-container {
  position: relative;
  width: 100%;
  margin: 0 auto;    /* center horizontally */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.blurb {
    padding: 20px 20px 0px 20px;
}


.aboutTheAuthor, .qa, .socials, .whereToBuy {
    padding: 0px 20px 0px 20px;
}

.aboutTheAuthor {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

.portrait {
    height: auto;
    max-width: 100%;
    flex-shrink: 0;
}

.aboutText {
    width: 100%;
    min-width: 0;
}

.aboutText h3 {
    margin-top: 0;
}


/* Tablet and up: side by side */
@media (min-width: 480px) {
    .aboutTheAuthor {
        flex-wrap: nowrap;
    }
    .portrait {
        width: 40%;
        max-width: 250px; /* or whatever works for your layout */
    }
    .aboutText {
        width: 60%;
    }
}


.question{
    font-weight: bolder;
}

.socialButtons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0; /* optional, for spacing above/below */
}


.YTButton img {
  height: 40px; /* or whatever suits your design */
  transition: transform 0.2s ease;
}

.YTButton:hover img {
  transform: scale(1.05);
}

