/*
Stylesheet for initial jeffstuff.ca website
'Primitive' responsive programming
*/

/* Routine responsive coding CSS points */
html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

img {
    max-width: 100%;
}


body {
    background-color: papayawhip;
}

h1 {
    text-align: center;
    font-size: 200%;
    font-family: serif;
    font-style: italic;
}


#intro-block {
    margin-left: 20%;
    margin-right: 20%;
}

#end_block {
    margin-left: 20%;
    margin-right: 20%;
    color: purple;
    text-align: center;
}

/* CSS for jeff_menu class */

.jeffstuff_menu {
    margin-left: 20%;
    margin-right: 20%;
    font-size: 125%;
    font-family: serif;
    color: blue;
    text-align: center;
    border-color: purple;
    border-width: 4px;
    border-style: ridge;
}


h1.jeffstuff_menu {
    font-size: 150%;
    text-align: center;
    color: red;
    font-weight: bold;
}