img,
picture,
video {
    display: block;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    background-color: black;
    color: white;
    overflow-x: hidden;
}

p {
    font-size: 1em;
    font-family:Arial, Helvetica, sans-serif;
}

a {
    outline-color: transparent;
}

a:link {
    color: white;
    text-decoration: none;
}

a:visited {
    color: white;
}

a:focus{
    text-decoration: none;

}

a:hover{
    color: darkgray;
}

a:active {
    color: maroon;

}

.logo {
    max-height: 100px;
}

.wrapper {
    max-width: 1020px;
    margin-inline: auto;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(000, 000, 000, .8);
    position: sticky;
    top: 0px;
    z-index: 10;
}

@media screen and (max-width: 890px) {
    .header {
        /* justify-content: flex-start; */
        /* align-items: flex-start; */
        flex-wrap: wrap;
    }
}


.menu {
    margin-left: auto;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
}

.menu ul {
    display: flex;
    list-style: none;
    padding: 0em;
    margin: 0em;
}

/* @media screen and (max-width: 890px) {
    .menu ul {
        flex-direction: column;
    }
} */

.menu li {
    margin: 0 1em;
}


.menu li:hover {
    cursor: pointer;
}

.contentDiv {
    margin-top: 2em;
    margin-left: auto;
    margin-right: auto;
}

.hero {
    position: relative;
}

.heroPic {
    width: auto;
    height: auto;
    object-fit: cover;
    object-position: 20% 20%;
}

.title {
    font-family:Arial, Helvetica, sans-serif;
    font-size: 4em;
    font-weight: bolder;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 890px) {
    .title {
        font-size: 3rem;
    }
}

@media  screen and (max-width: 670px) {
    .title {
        font-size: 2rem;
        top: 30%;
    }
}

.subtitle {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: cursive;
    font-size: 1em;
}

.subhero {
    margin-left: auto;
    margin-right: auto;
}

/* @media screen and (max-width: 500px) {
    .subhero {
        display: none;
    }
} */

@media screen and (max-width: 500px) {
    #hps {
        display: none;
    }
}

.circleContent {
    display: grid;
    grid-template-columns: 1fr 3fr;    
    grid-auto-rows: minmax(100px, auto);
    margin-top: 1em;
}

@media screen and (max-width: 500px) {
    #circleText, #circle {
        display: none;
    }
}

.nameAlpha {
    grid-column: 1;
    grid-row: 1;
    color: rgb(255, 255, 255);
    font-weight: bolder;
    font-family: cursive;
    font-size: 2em;
}

.bioAlpha {
    color: rgb(255, 255, 255);
}

.nameBeta {
    grid-column: 1;
    grid-row: 1;
    color: rgb(138, 144, 187);
    font-weight: bolder;
    font-family: cursive;
    font-size: 2em;
}

.bioBeta {
    color: rgb(138, 144, 187);
}

@media screen and (max-width: 500px) {
    #seekers, #seekersblurb {
        display: none;
    }
}

.sig {
    color: rgb(138, 144, 187);
    font-size: 2em;
    font-weight: bolder;
    font-family: cursive;
}

.pride {
    display: grid;
    place-items: center;
}

#hpsHeader, #circle, #seekers, #reading, #events {
    margin-top: 5em;
    scroll-margin-top: 5em;
}

#books, #event-items {
    text-align: center;
}

@media screen and (max-width: 500px) {
    #books, #reading {
        display: none;
    }
}

@media screen and (max-width: 500px) {
    #events, #event-items {
        display: none;
    }
}

.footer {
    margin-top: 3em;
    text-align: center;
    font-weight: bold;
    color: rgb(156, 8, 8);
}