/*
Author: Brent Snyder
Date: 9/12/2022
Project1 
*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* For Older Browsers */

header,
nav,
main,
footer {
    display: block;
}

/* END */

* {
    box-sizing: border-box;
}

#wrapper {

    margin-left: auto;
    margin-right: auto;
    margin-top: 1.0em;
    
    width: 90%;
    min-width: 0px;
    max-width: 600px;
    border: solid black;
    border-width: medium;
    background-image: url("honolulunight.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}
    

body {

    background-color:  whitesmoke;
   
    
}


header {
    background-color: #90EE90;
    border: solid black;
    border-width: thin;
    line-height: 100px;
}

article {

    width: 65%;
    float: right;

}

#ohana img {

    width: 100%;
    padding-top: 80px;
}

img {

    float: right;
    width: 20%;
    height: 30%;
    padding-bottom: 15px;

}

/* sidebar */

h1 {

    background-color: #000033;
    color: #FFFFFF;
    line-height: 160%;
    font-size: 140%;
    letter-spacing: 2px;
    text-align: center;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
}

h2 {

    color: blue;
    font-size: 200%;
    text-align: Center;
    font-weight: bold;
}

li {

    color: white;
}

aside {

    width: 35%;
    background-color: #3CB371;
    border-right: solid black;
    border-width: thin;
    margin-right: 50px;
}

aside p {

    padding: 0.5em 0.2em 0.5em;
    padding-left: 0.3em;
    margin: 0 0.5em;
    color: black;
    font-weight: bold;

}

/* footer section */
footer {


    padding: 0.6em;

    color: white;
    text-align: center;
    clear: right;
    background-color: #90C7E3;
    border-top: solid black;
    border-width: medium;
}

footer p {

    margin: 0.4em;

}

footer p.accent {

    color: white;
}

p {

    color: black;
    font-size: 75%;

}


/* End of Mobile View */

/* Tablet View & Desktop */

@media only all and (min-width: 768px) {

#wrapper {

    
    width: 65%;
    min-width: 768px;
    max-width: 1024px;
    background-image: none;
    margin-bottom: 3em; 
    
}
    
body {
    background-color: black; 
    background-image: url("honolulunight.jpg");
    background-repeat: no-repeat; 
    background-size: cover;
    
}

article {

    width: 70%;
    
}
#ohana img {
    
    float:right;     
    width: 90%; 
    height: 110%;
    margin-right: -110px; 
}
img             {

    float: right;
    width: 17%;
    height: 17%;
        
}

/* sidebar */

h1 {

    
    line-height: 200%;
    font-size: 200%;
    letter-spacing: 2px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
}

aside {

    width: 30%;
    margin-right: 0px;      
}
    
aside p {

    
    padding-left: 1em;
    margin: 0 0.5em;
}
    
/* footer section */

footer {
    padding-bottom: -2em; 
    }    

p 		{ 

	color: black;
	font-size: 99% 
	  
    
    
