@font-face {
    font-family: "Roboto-Light"; /*a name to be used later*/
    src: url("Roboto-Light.ttf");
}

body {
    background-color: #ffffff;
    display: flex;
    flex-flow: column;
    min-height: calc(100vh - 18px);
    justify-content: space-between;
    overflow-x: hidden;
    min-width: 320px;
}

#header {
    box-shadow: inset 0px 1px 0px 0px #6b6d76;
    background: linear-gradient(
        180deg,
        rgb(143, 143, 143) 0%,
        rgb(209, 209, 209) 50%,
        rgba(255, 255, 255, 1) 100%
    );
    background-color: #ffffff;
    margin: -10px;
}

#title {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
}

#name {
    text-align: left;
    font-family: Roboto-Light;
    margin-top: 50px;
    margin-left: 50px;
    margin-bottom: 50px;
}


#name a {
    color: #000000;
    text-decoration: none;
}

.menu-icon {
    margin-top: 50px;
    margin-right: 50px;
    margin-bottom: 50px;
    cursor: pointer;
}

.menu-icon .bar {
    width: 30px;
    height: 4px;
    background-color: #000000;
    margin: 5px 0;
    transition: 0.4s;
}

@media (max-width: 500px) {
    #name a {
        font-size: 25px;
        font-weight: bold;
    }

    .menu-icon {
        margin-top: 53px;
    }

    .menu-icon .bar {
        width: 22.5px;
        height: 3px;
    }
}

.menu {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    justify-content: end;
}

.menu_items {
    margin-top: -100%;
    margin-right: 50px;
    padding: 1rem;
    width: 150px;
    background-color: #ffffff;
    color: #000000;
    text-align: right;
    border-radius: 15px;
    transition: all 0.3s;
    border: 1px solid #000000;
    font-family: Roboto-Light;
}

.menu_items.show {
    margin-top: 0;
}

.menu a {
    display: block;
    color: #000000;
    text-decoration: none;
    font-size: 20px;
    margin: 1rem 0;
    /*
    font-size: 1.2rem;
    */
}

.menu a:hover {
    color: #ff7f50;
}

/* --------------------- */

#footer {
    /*
    box-shadow: inset 0px 1px 0px 0px #6b6d76;
    */
    background: linear-gradient(
        0deg,
        rgba(64, 64, 64, 1) 0%,
        rgba(126, 126, 126, 1) 43%,
        rgba(255, 255, 255, 1) 100%
        );
    background-color: #ffffff;
    margin: -10px;
    left: 0;
    bottom: 0;
    right: 0;
    color: #FFFFFF;
    font-size: 30px;
    font-family: Roboto-Light;
    font-weight: bold;
    text-align: center;
    padding-top: 50px;
}

#contact {
    display: flex;
    flex-flow: row;
    gap: 20px;
    justify-content: center;
    /*
    padding-left: 500px;
    padding-right: 500px;
    */
    padding-top: 0px;
    padding-bottom: 50px;
}

#contact.highlight {
    background-color: #ffcece;
}

#signature {
    text-align: center;
    padding-bottom: 20px;
    color: rgb(212, 212, 212);
    font-family: Roboto-Light;
    font-size: 15px;
}

/* ----------------------- */

#bio {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    font-family: Roboto-Light;
    font-size: 20px;
}

#bio a {
    color: #b90000;
}


#profile_pic {
    float: right;
    padding: 40px;
    border-radius: 50%;
    width: 40%;
    min-width: 300px; 
}

#bio_para {
    font-size: 20px;
    text-align: left;
    overflow: visible;
    color: #000000;
    min-width: 40%;
}

#book_cover_link {
    float: left;
    max-width: 320px;
    padding: 10px 30px 0px 0px;
}

#bkcvr {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}



@media (max-width: 700px) {
    #bio {
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }

    #profile_pic {
        overflow: none;
        float: none;
        width: none;
    }

    #bio_para {
        float: none;
        min-width: 100px;
        max-width: 600px;
    }

    #book_cover_link {
        float:none;
        width: 100%;
        max-width: 80%;
        padding: 0px;
    }
}

/* --------------------- */

#book {
    font-family: Roboto-Light;
    font-size: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    clear: both;
    padding-top: 30px;
}

#book a {
    color: #b90000;
}

#book_title {
    font-family: Roboto-Light;
    text-align: center;
    padding-bottom: 30px;
    color: #000000;
    padding-left:100px;
    padding-right: 100px;
}

#book_desc {
    overflow: visible;
    font-family: Roboto-Light;
}

#book_cover {
    float: right;
    min-width: 200px;
    max-width: 400px;
    margin-left: 15px;
    margin-bottom: 15px;
}

@media (max-width: 800px) {
    #book_title {
        padding-left: 0;
        padding-right: 0;
    }

    #book_desc {
        display: flex;
        flex-flow: row wrap;
        overflow: none;
        float: none;
    }

    #book_cover {
        float: none;
        min-width: 100px;
        max-width: 600px;
    }
}

#book_buttons {
    display: flex;
    float: none;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin-top: 50px;
}

button {
    /*
    border-radius: 10px;
    border-color:#ff6666;
    box-shadow: inset;
    background-color: #000000;
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 0px;
    box-shadow: inset 0px 1px 0px 0px #d3d3d3;
    background: linear-gradient(to bottom, #5a5a5a 5%, #b9b9b9 100%);
    background-color: #ffffff;
    border-radius: 13px;
    border: 1px solid #929292;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-family: Roboto-Light;
    font-size: 15px;
    padding: 6px 24px;
    text-decoration: none;
    text-shadow: 0px 1px 0px #7e7e7e;
    */
    box-shadow:inset 0px 1px 0px 0px #ffffff;
	background:linear-gradient(to bottom, #ffffff 5%, #f6f6f6 100%);
	background-color:#ffffff;
	border-radius:6px;
	border:1px solid #dcdcdc;
	display:inline-block;
	cursor:pointer;
	color:#383838;
	font-family:Roboto-Light;
	font-size:20px;
	font-weight:bold;
	padding:6px 24px;
	text-decoration:none;
	text-shadow:0px 1px 0px #ffffff;
}

/* --------------------- */

.listicles {
    text-align: left;
    font-family: Roboto-Light;
    max-width: 1000px;
    margin: 0 auto;
    clear: both;
    padding-bottom: 20px;
    padding-top: 20px;
}

.listicles h2 {
    color: #000000;
    font-family: Roboto-Light;
    text-align: center;
}

.listicles h4 {
    text-align: center;
}

li {
    margin: 15px 0;
    color: #000000;
    /*
    */
    font-size: 20px;
    font-family: Roboto-Light;
}

a {
    color: #000000;
}

