/* CSS Document */

html {
    box-sizing: border-box;
}

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

ul,
ol {
    padding-left: 0;
    list-style: none;
}

sup {
    line-height: 0;
}

.cf:before,
.cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

html {
    font-family: Tahoma, Arial, sans-serif;
    min-height: 100%;
}

body {
    min-height: 100%;
    margin: 0;
    background:  url(images/eggs-icon.png) repeat-x,
		         url(images/breakfast-icon.png) repeat-x bottom,
		         transparent radial-gradient(
                 hsla(45, 100%, 51%, 0.3) 50%,
                 hsla(14.4, 100%, 57%, 0.4) 70%,
                 hsla(4.1, 90%, 58%, 0.5));
	
}

.container {
    margin: 0 .625rem;
    overflow: hidden;
}

.wrapper {
    border: 5px solid darkgrey;
    border-radius: 10px;
    background: #ff9800;
    margin-top: 10px;
    margin-bottom: 10px;
	box-shadow: 7px 7px 10px black;
}

header {
    display: flex;
    border-radius: 10px;
    border: 2px solid gray;
    margin: 20px;
    background: 
url(images/cooked-egg.jpg) no-repeat center center / cover,
        #000 linear-gradient(to bottom, rgba(0, 159, 245, 1), rgba(0, 100, 225, 1));
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.8);
}

header h1 {
    line-height: 3;
    text-align: center;
    flex: 1 0 auto;
    margin: 0;
    color: #fff;
    font-family: "Arial Black", sans-serif;
    font-weight: 200;
    letter-spacing: 4px;
    text-shadow: 3px -4px 4px rgba(0, 0, 0, 0.6);
	background: transparent linear-gradient(to bottom,
		              #FFFFFF 1px,
		              #FFC107 5px, 
		              #FF5722 15px,
		              #F44336);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

section {
    overflow: hidden;
    margin: 20px;
    border: 2px solid white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.8);
    background: #fff linear-gradient(to bottom, rgba(0, 0, 0, 0.80) 0%, rgba(255, 255, 255, 0.60) 5%, rgba(255, 255, 255, 1) 20%);
}

h2 {
    margin: 24px 0 6px;
	background-color: gold;
	padding-left: 5%;
	padding-top: 5px;
	padding-bottom: 5px;
	border: darkgrey solid 3px;
	border-radius: 10px;
	margin-bottom: 15px;
}

h4 {
	margin: inherit;
	background-color: gold;
	padding-left: 5%;
	padding-top: 3px;
	padding-bottom: 3px;
	border: darkgrey solid 3px;
	border-radius: 10px;
	margin-bottom: 10px;
}

p {
    margin: 0 0 16px;
    line-height: 1.4;
   
}

img {
    width: 100%;
	
}

.check {
	background-image: url(images/check.png);
	background-position: left;
	background-repeat: no-repeat;
	background-size: 25px 25px;
	
}

a.buttonv01 {
	display: inline-block;
	line-height: 2;
	padding: 0 1em;
	text-decoration: none;
	border-radius: 6px;
	border: 2px solid black;
	color: black;
	font-weight: bold;
	background-color: gold;
	margin-right: 5px;
	box-shadow: 2px 4px 4px grey;
	font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", "sans-serif";
}

a.buttonv01:link {
	box-shadow: 2px 4px 4px grey;
}


a.buttonv01:hover {
	box-shadow: none;
}

a.buttonv01:active {
	box-shadow: inset 0 2px 4px black;
}

a.buttonv01-small {
	display: inline-block;
	line-height: 2;
	padding: 0 1em;
	text-decoration: none;
	border-radius: 6px;
	border: 2px solid black;
	color: black;
	font-weight: bold;
	font-size: 0.8em;
	background-color: gold;
	margin-right: 5px;
	box-shadow: 2px 4px 4px grey;
	font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", "sans-serif";
}

a.button01-small:link {
	box-shadow: 2px 4px 4px grey;
}

a.buttonv01-small:hover {
	box-shadow: none;
}

a.buttonv01-small:active {
	box-shadow: inset 0 2px 4px black;
}

a.buttonv01-large {
	display: inline-block;
	line-height: 2;
	padding: 0 1em;
	text-decoration: none;
	border-radius: 6px;
	border: 2px solid black;
	color: black;
	font-weight: bold;
	font-size: 1.5em;
	background-color: gold;
	margin-right: 5px;
	box-shadow: 2px 4px 4px grey;
	font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", "sans-serif";
}

a.buttonv01-large:link {
	box-shadow: 2px 4px 4px grey;
}

a.buttonv01-large:hover {
	box-shadow: none;
}

a.buttonv01-large:active {
	box-shadow: inset 0 2px 4px black;
}


a.buttonv02 {
	display: inline-block;
	line-height: 2;
	padding: 0 1em;
	text-decoration: none;
	border-radius: 10px;
	border: 6px double black;
	color: black;
    font-weight: bold;
	background-color: greenyellow;
}

a.buttonv02:link {
	background-color: greenyellow;
}

a.buttonv02:hover {
	background-color: lightgrey;
	cursor: pointer;
}

a.buttonv02:active {
	background-color: whitesmoke;
}

a.buttonv02-small {
	display: inline-block;
	line-height: 2;
	padding: 0 1em;
	text-decoration: none;
	border-radius: 10px;
	border: 6px double black;
	color: black;
	font-weight: bold;
	font-size: 0.8em;
	background-color: greenyellow;
}

a.buttonv02-small:link {
	background-color: greenyellow;
}

a.buttonv02-small:hover {
	background-color: lightgrey;
	cursor: pointer;
}

a.buttonv02-small:active {
	background-color: whitesmoke;
}

a.buttonv02-large {
	display: inline-block;
	line-height: 2;
	padding: 0 1em;
	text-decoration: none;
	border-radius: 10px;
	border: 6px double black;
	color: black;
	font-weight: bold;
	font-size: 1.5em;
	background-color: greenyellow;
}

a.buttonv02-large:link {
	background-color: greenyellow;
}

a.buttonv02-large:hover {
	background-color: lightgrey;
	cursor: pointer;
}

a.buttonv02-large:active {
	background-color: whitesmoke;
}

a.buttonv03 {
	display: inline-block;
	line-height: 2;
	padding: 0 1em;
	text-decoration: none;
	transform: skewX(-15deg);
	border: 2px solid black;
	box-shadow: 6px 6px 0 black;
	color: white;
	font-weight: bolder;
	background-color: crimson;
	margin-right: 10px;
	font-family:"Arial Black", sans-serif;
}

a.buttonv03:link {
	transform: skewX(-15deg);
}

a.buttonv03:hover {
	transform: skewX(15deg);
}

a.buttonv03:active {
	color: black;
	background-color: lightsalmon;
}

a.buttonv03-small {
	display: inline-block;
	line-height: 2;
	padding: 0 1em;
	text-decoration: none;
	transform: skewX(-15deg);
	border: 2px solid black;
	box-shadow: 6px 6px 0 black;
	color: white;
	font-weight: bolder;
	font-size: 0.8em;
	background-color: crimson;
	margin-right: 10px;
	font-family: "Arial Black", sans-serif;
}

a.buttonv03-small:link {
	transform: skewX(-15deg);
}

a.buttonv03-small:hover {
	transform: skewX(15deg);
}

a.buttonv03-small:active {
	color: black;
	background-color: lightsalmon;
}

a.buttonv03-large {
	display: inline-block;
	line-height: 2;
	padding: 0 1em;
	text-decoration: none;
	transform: skewX(-15deg);
	border: 2px solid black;
	box-shadow: 6px 6px 0 black;
	color: white;
	font-weight: bolder;
	font-size: 1.5em;
	background-color: crimson;
	margin-right: 10px;
	font-family: "Arial Black", sans-serif;
}

a.buttonv03-large:link {
	transform: skewX(-15deg);
}

a.buttonv03-large:hover {
	transform: skewX(15deg);
}

a.buttonv03-large:active {
	color: black;
	background-color: lightsalmon;
}

a.buttonv04{
	display: inline-block;
	line-height: 2;
	padding: 7px 20px;
	text-decoration: none;
	border-radius: 50px;
	border: 4px solid darkorange;
	color: black;
	background: transparent radial-gradient(
                 hsla(45, 100%, 51%, 0.3) 50%,
                 hsla(14.4, 100%, 57%, 0.4) 70%,
                 hsla(4.1, 90%, 58%, 0.5));
	font-weight: bold;
	font-size: 1.3em;
	font-family: Impact, "Arial Black", sans-serif;
	}

a.buttonv04:link {
	border: 4px solid darkorange;
}

a.buttonv04:hover {
	cursor: pointer;
	border: 4px dotted black;
}

a.buttonv04:active {
	border: 4px solid black;
}

a.buttonv04-small {
	display: inline-block;
	line-height: 2;
	padding: 7px 20px;
	text-decoration: none;
	border-radius: 50px;
	border: 4px solid darkorange;
	color: black;
	background: transparent radial-gradient(
                 hsla(45, 100%, 51%, 0.3) 50%,
                 hsla(14.4, 100%, 57%, 0.4) 70%,
                 hsla(4.1, 90%, 58%, 0.5));
	font-weight: bold;
	font-size: 1em;
	font-family: Impact, "Arial Black", sans-serif;
	margin-left: 25px;
	}

a.buttonv04-small:link {
	border: 4px solid darkorange;
	
}

a.buttonv04-small:hover {
	cursor: pointer;
	border: 4px dotted black;
}

a.buttonv04-small:active {
	border: 4px solid black;
}

a.buttonv04-large {
	display: inline-block;
	line-height: 2;
	padding: 7px 20px;
	text-decoration: none;
	border-radius: 50px;
	border: 4px solid darkorange;
	color: black;
	background: transparent radial-gradient(
                 hsla(45, 100%, 51%, 0.3) 50%,
                 hsla(14.4, 100%, 57%, 0.4) 70%,
                 hsla(4.1, 90%, 58%, 0.5));
	font-weight: bold;
	font-size: 1.7em;
	font-family: Impact, "Arial Black", sans-serif;
	}

a.buttonv04-large:link {
	border: 4px solid darkorange;
}

a.buttonv04-large:hover {
	cursor: pointer;
	border: 4px dotted black;
}

a.buttonv04-large:active {
	border: 4px solid black;
}

footer {
    clear: both;
    overflow: auto;
    margin: 0 20px;
    padding: 0 0 20px;
    color: black;
}

footer a[href^=javascript] {
    position: relative;
    color: #000;
    display: block;
    line-height: 2em;
    font-size: 0.625em;
    background-color: #fff;
    border-radius: 3px;
    margin: 0 0 0 10px;
    padding: 0 10px;
    float: right;
    text-decoration: none;
    box-shadow: 0 2px 2px #000;
}

footer a[href^=http]:active {
    top: 2px;
    box-shadow: none;
}
.CC {
	font-style:italic;
	color: black;
	padding-left: 20px;
}

/*
Start Media Query
    if screen is 48rem or larger (can use px or em)
    rem is based on font size of root element
        (16px * 48 = 768)
    use the following rules
*/

@media (min-width: 48rem) {
    .container {
        width: 96%;
        max-width: 800px;
        margin: 20px auto;
    }

    header {
        height: 400px;
        background:
url(images/sunrise.png) no-repeat top 30px right -10px / 500px 284px,
url(images/eggs.png) no-repeat top 20px right 20px / 250px 216px,
url(images/cooked-egg.jpg) no-repeat center center / cover,
            #000 linear-gradient(to bottom, rgba(0, 159, 245, 1), rgba(0, 100, 225, 1));
    }

    header h1 {
        line-height: 2;
        font-size: 2.75em;
        align-self: flex-end;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;

    }

    img {
        width: auto;
        float: right;
        margin: 0 0 2px 4px;
    }
}



