/* CSS "reset" */
/* '*' means the whole page */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* headers */

/* HOBBY MENU  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.hobby-menu {
    display: flex;
    position: fixed;
    top: 0;
    flex-flow: row wrap;
    flex: 1 0 0;
    width: 100%;
    z-index: 2;
    font-size: clamp(16pt, 24pt, 36pt);
    border: 2px solid black;
    letter-spacing: .15rem;
}

.hobby-menu>a {
    font-family: "Luckiest Guy", Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-align: center;
    justify-content: center;
    display: flex;
    flex: 1 0 22%;
    font-weight: bolder;
    border: 2px solid black;
    text-decoration: none;
    color: rgb(235, 135, 135);
    text-shadow: 1px 1px 0 black;
    transition: all 90ms linear;
    background-color: rgb(247, 222, 154)
}

.hobby-menu>a:hover {
    text-shadow: 2px 2px 2px black;
    color: rgb(81, 243, 255);
}



/* HOBBY MENU ^^^ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

header {
    border-style: solid;
    padding: 10px;
    background-color: rgb(255, 222, 138);
    margin: 22dvh 0 6% 0;
    position: relative;
}

h1.title {
    text-transform: uppercase;
    text-align: center;
    font-weight: bolder;
    font-family: "Luckiest Guy", Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-shadow: 2px 2px 2px white;
    font-size: 4dvw;
    letter-spacing: 1dvw;
    color: black;
}

h2 {
    border-top: solid black;
    border-bottom: solid black;
    font-family: "Permanent Marker", Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-shadow: 0px 0px 2px black;
    letter-spacing: .5dvw;
    background-color: whitesmoke;
    font-size: 4dvw;
    color: crimson;
    text-shadow: 1px 1px black;
    text-align: center;
}

h2,
h3,
p,
a {
    padding-left: 1dvw;
    padding-right: 1dvw;
}


h3 {
    text-align: left;
    font-size: 3vw;
    color: rgb(20, 59, 86);
    text-shadow: 1px 1px 1px white;
}

h4 {
    font-size: 2dvw;
    text-align: center;
}


/* PHONE SCREEN CONFIG-+-+
*/

@media screen and (max-width: 900px) {


    header {
        border-style: solid;
        padding: 10px;
        background-color: rgb(255, 222, 138);
        margin: 12.5dvh 1% 2% 1%;
    }

    .bio p {
        font-size: 4dvw;
        padding: 4%;
        text-align: center;
        text-decoration-line: underline;
        text-decoration-color: black;
        text-decoration-style: dashed;
        text-decoration-thickness: .2dvw;

    }

    .bio h2 {
        font-size: 6dvw;
    }

    h3 {
        font-size: 5dvw;
    }

    .hobby-menu>a {
        font-size: 12pt;
    }

    .before-footer>a {
        line-height: 1rem;
    }
}

@media screen and (max-width: 550px) {

    header {
        border-style: solid;
        padding: 10px;
        background-color: rgb(255, 222, 138);
        margin: 26dvh 1% 2% 1%;
    }

    .hobby-menu>a {
        flex: 1 0 50%;
        line-height: 1.25;
    }
}

/* END PHONE SCREEN CONFIG*/

/*-----------------+++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Header Stuff ^^^^^*/


body {
    background-color: skyblue;
    background-image: url(/cis195/images/daniel_logo.png);
    background-size: 10dvw;
    background-repeat: repeat;
    background-position: bottom;
    color: rgb(20, 59, 86);
}

p,
a.facts-child {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: justify;
    font-size: 2.25dvw;
    padding-top: 12pt;
    padding-bottom: 12pt;
    font-weight: 450;
    text-shadow: 1px 1px .25dvw whitesmoke;
    letter-spacing: 1.5px;
    line-height: 1.5em;
}

section.bio,
section.madtown,
section.facts-section {
background-image: url(/cis195/images/bulletinboard.png);
background-color: skyblue;
border-style: solid;
display: inline-block;
padding-bottom: 1em;
}

/*FACTS PAGE SECTION MODULE 8*/
section.facts-section {
    display: grid;
    min-width: 100%;
    min-height: 40dvh;
    grid-template-columns: repeat(2, 1fr);
}

#tblTitle {
    color: crimson;
    padding-bottom: 1svw;
    text-align: center;
    background-color: rgba(240, 248, 255, 0.241);
    font-family: "luckiest guy", Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    letter-spacing: .25rem;
}

a.facts-child,
.facts-child {
    font-size: clamp(16pt, 3svw, 3svw);
    border: 1px solid black;
    display: grid;
    color: rgb(165, 255, 255);
    text-shadow: 2px 2px 1px black;
    align-items: center;
    padding: 1svw 1svw;
    text-align: center;
    text-decoration: none;
    transition: all 100ms linear;
}

a.facts-child:hover{
    background-color: rgba(240, 248, 255, 0.621);
}

#fc-two {
    color: rgb(0, 0, 0);
    text-shadow: 2px 2px 1px rgb(165, 255, 255);
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 15px;
    flex: 1 0 0;
}

.listmage {
    display: flex;
    flex: 1 0 0;
    border: 2px solid skyblue;
    min-height: 128px;
    min-width: 128px;
    max-height: 128px;
    max-width: 128px;
}

#cancor {
    background-image: url(/cis195/images/cancor-kill.jpg);
    background-size: cover;
    background-position: center;
}

#suisil {
    background-image: url(/cis195/images/suisil-cleansing.jpg);
    background-size: cover;
    background-position: center;
}

#sch {
    background-image: url(/cis195/images/oxy.jpg);
    background-size: cover;
    background-position: center;
}

#sem {
    background-image: url(/cis195/images/rb3.jpg);
    background-size: cover;
    background-position: center;
}

#drp {
    background-image: url(/cis195/images/drp.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

#ellis {
    background-image: url(/cis195/images/ellis.webp);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

@media screen and (max-width: 600px) {
    .listmage {
        min-height: 48px;
        min-width: 48px;
        max-width: 48px;
        max-height: 48px;
    }
}

/* END FACTS PAGE SECTION */

/* START OF FAVORITE SHOWS SECTION */


table.shows,
caption {
    border: .25svw solid black
}

caption {
    font-family: "luckiest guy", Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: white;
    text-shadow: 2px 2px 1px black;
}

table.shows,
table.tr,
caption {
    background-image: url(/cis195/images/bulletinboard.png);
    background-color: skyblue;
    width: 95svw;
    font-size: clamp(16pt, 3svw, 3svw);
    text-align: center;
    justify-content: center;
    margin: auto;
}

table, 
tr,
table th, 
td{
    border: 2px solid black;
    border-collapse: collapse;
    padding: 1svw;
}

tr.tblHeading {
    color: rgb(144, 255, 144);
    text-shadow: 2px 2px 1px black;
}

.shows td,
tr td a {
    color: black;
    text-shadow: 2px 2px 1px rgb(144, 255, 144);
    transition: all 100ms linear;
}

tr td a:hover{
    background-color: rgba(255, 255, 255, 0.367);
}



table #athf {
    background-image: url(/cis195/images/athf.jpg);
    background-size: 100% 100%;
    margin: auto;
}

table #brbd {
    background-image: url(/cis195/images/breaking-bad.webp);
    background-size: 100% 100%;
    margin: auto;
}

table #spgbb {
    background-image: url(/cis195/images/spgbb.webp);
    background-size: 100% 100%;
    margin: auto;
}

table #icarly {
    background-image: url(/cis195/images/icarly.jpg);
    background-size: 100% 100%;
    margin: auto;
}

table #fg {
    background-image: url(/cis195/images/fam-guy.jpg);
    background-size: 100% 100%;
    margin: auto;
}

table #ttb {
    background-image: url(/cis195/images/ttb.jpg);
    background-size: 100% 100%;
    margin: auto;
}

table #teas {
    background-image: url(/cis195/images/teas.jpg);
    background-size: 100% 100%;
    margin: auto;
}

/* END OF FAVORITE SHOWS SECTION */
nav {
    margin: auto;
}

.before-footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-top: 5dvh;
}

.before-footer>a {
    font-size: clamp(16px, 3svw, 4svw);
    color: rgb(251, 255, 0);
    text-shadow: .25svw .25svw .25svw black;
    transition: all 250ms linear;
    line-height: 6dvh;
    display: grid;
    text-align: left;
    min-height: 3rem;
    border-bottom: 1px solid rgb(255, 255, 255);
}

nav.footer>a {
    font-size: 1.5dvw;
    color: rgb(251, 255, 0);
    line-height: 1.5rem;
    text-align: justify;
}



.before-footer>a:hover {
    color: rgb(251, 255, 0);
    text-shadow: 1px 1px 1px black;
}


.footer>a:hover {
    color: skyblue;
}

img.dcat {
    float: right;
    transform: rotate(5deg);
    margin-right: 1svw;
    border: .77dvw solid rgb(0, 0, 0);
    margin: auto;
    min-height: 22dvw;
    min-width: 22dvw;
    max-width: 22dvw;
    max-height: 22dvw;
    box-shadow: 1dvw 1dvw 1dvw black;
}

img.dicon {
    float: left;
    width: fit-content;
    rotate: -5deg;
    border: 0px solid rgb(58, 30, 0);
    min-height: 22dvw;
    min-width: 22dvw;
    max-width: 22dvw;
    max-height: 22dvw;
    box-shadow: -1dvw 1dvw 1dvw black;
}

.bio figure {
    margin: 0 5dvw;
    display: flex;
    border: 1px solid transparent;
    gap: 50px;
}

.bio figure div {
    display: flex;
    flex: 1;
    border: 2dvw solid black;
    aspect-ratio: 1;
    box-shadow: 0px 0px 1rem black;
}

.fig-p div:nth-child(1) {
    background-image: url(/cis195/images/iamgent.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.fig-p div:nth-child(2) {
    background-image: url(/cis195/images/mullet-daniel.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.fig-ptwo div:nth-child(1) {
    background-image: url(/cis195/images/madras-overview.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.fig-ptwo div:nth-child(2) {
    background-image: url(/cis195/images/madras-mtn.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.fig-pthree div:nth-child(1) {
    background-image: url(/cis195/images/css-stock1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.fig-pthree div:nth-child(2) {
    background-image: url(/cis195/images/css-stock2.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

figure {
    border: 11px solid transparent;
    display: block;
    padding: 25px 25px 25px 25px;
    margin: auto;
}


img.histmad {
    width: 20dvw;
    box-shadow: 0px 0px 5px rgb(20, 59, 86);
    margin: 1em 1em 0em 2em;
    border-radius: 3px;
    display: flex;
    margin-bottom: auto;
}

div.histimg {
    float: right;
    margin-top: 2em;
}

div.mad-log {
    margin: auto;
    max-width: fit-content;
}


footer {
    margin: 15em 5em 0em 5em;
    position: bottom;
    text-align: center;
    padding: 12px;
    font-size: 2.5vw;
    background-color: black;
    color: white;
    border-style: solid;
    border-color: white;
}