﻿/* Books.css */

#AuthorID {
    font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
    font-size: 2.5vw;
    font-style: italic;
    font-weight: 800;
    color: white;
    text-align: center;
    margin: 1em 0 0 0;
}

#Intro {
    padding: 8px;
    margin: 0;
    width: inherit;
}
#Intro_CrucibleUniverse {
    padding: 8px;
    width: 90vw;
    background-color:black;
    border:8px solid white;
    border-radius: 20px;
}
    #Intro p, #Intro_CrucibleUniverse p {
        font-family: "Times New Roman", Times, serif;
        text-align: center;
        text-shadow: 2px 13px 24px white,3px 5px 8px red;
        font-style: italic;
        font-size: 2.5vw;
        font-weight: 700;
        color: aqua;
    }
#MenuBarPage {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}
    #MenuBarPage Button {
        color: black;
        font-size: 3vw;
        font-weight: 700;
        padding: 0px 1em;
        margin: 0px 0.5em .5em 0;
        background-color: darkgrey;
        border: 5px groove white;
        border-radius: 10px;
    }
        #MenuBarPage Button:hover {
            font-style: italic;
            font-weight: 800;
        }

#apDivFloatRight {
    position: absolute;
    z-index: auto;
    height: 200px;
}

#container {
    display: flex;
    flex-direction:column;
    border: 4px solid #000000;
    text-align: left; /* this overrides the text-align: center on the body element. */
    width: 95vw;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    font-size: 2.0vw;
}

#AboutWriting {
    padding: 8px;
    margin: 0;
    width: inherit;
    border-radius: 20px;
    background-image: url(Bkgnd/seamless-light-gray-material-background.jpg);
}
    #AboutWriting p {
        font-size: 1.5vw;
        font-weight: 400;
    }


#MainContent {
    border: 5px ridge #CCC;
    border-radius: 20px;
    margin: 0;
    padding: 0 15px;
    font-size: 1.5vw;
    font-weight: 550;
}
#NolenPhoto {
    width: 20vw;
    height: auto;
    margin: 0 1vw 0 1vw;
    border: 3px;
    border-color: black;
    width: 12vw;
}

/* smaller screens, media query to stack the grid into a single column:*/
@media (max-width: 600px) {
    #Intro p {
        font-size: 3.2vw; /* Adjust header height for smaller screens */
        margin: 0 10%;
    }
}


