* {
  margin: 0;
  box-sizing: border-box;
}

html body {
	font-family: verdana, sans-serif; 
	color: white; 
	background-color: #044C40; 
	width: 100%;
	height: 100%; 
	margin: 0;
	margin-left: 1px; 
	margin-right: 1px;
	padding:1px;
	overflow: scroll;
	text-align: center;
}


#header {
	width: 100%;
	grid-column: 1 / -1;
	display: grid;
	grid-row: 1;
	color: #146154;
	height: 65px;
  	border: solid 2px grey;
	font-size: 40px;
	text-transform: ;
	font-style: ;
	text-align: center;
	padding: 5px;
	background-color: whitesmoke;
	z-index: 1;
}

h2 {font-size: 25px;
	padding: 5px;
}


p1 {font-size: 18px;
}

p2 {font-size: 18px;
	margin-top: 50px;
}

p3 {font-size: 17px;
}

a img { border: 0px; }
img { margin: 10px; }

p8 {font-size: 14px;
	font-style: italic;
}

#header, #navigation, #footer {
    width: 100%; 
    max-width: 100%;
}

#container { 
    display: grid;
    grid-template-rows: auto auto 1fr auto auto; 
    grid-template-columns: 5fr 1fr; 
    gap: 10px;
    width: 100%;
    min-height: 100vh;
    max-width: 790px;
    margin: 0 auto;
    border: 2px solid grey;
    text-align: left;
    background-color: #006A58;

}

#container > * {
   
    overflow: hidden;
}

#navigation { 
	grid-row: 2;
    display: flex;
    position: relative;
    justify-content: flex-end; 
    align-items: center; 
    gap: 10px; 
    padding: 10px;
    background-color: whitesmoke;
    height: 100px;
    overflow: visible;
    z-index: 10;
}

a {
	color: #00392F;
}

a:visited {
    color: #00392F;
}

#navigation a {
 display: flex; 
    justify-content: center;
    align-items: center;
    width: auto; 
    height: 50px; 
    font-size: 	15px;
    padding: 5px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border: solid 2px #575757;
    background-color: whitesmoke;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;

}

#navigation a:hover {
    background-color: #044B3F;
    color: white;
    transform: scale(1.10);
    border: 3px solid #575757;
}

#navigation a.on {
	background-color: #146154;
	color: whitesmoke;
}

.dropdown {
    position: relative;
    display: inline-block;
    z-index: 1;
}


.dropdown-menu {
    display: none;
    position: absolute;
    min-width: 200px;
    border: 4px solid #575757;
    z-index: 1000;
    top: 100%;
    left: 0;
}

.dropdown-menu a {
    padding: 12px 16px;
    display: block;
    text-align: left;
    text-decoration: none;
    border: ;
}

.dropdown-menu a:hover {
    background-color: #575757;
}

.dropdown:hover .dropdown-menu {
    display: block;
}


#footer { 
	grid-row: 5;
	justify-content: end;
	height: 70px;
	background-color: whitesmoke;
	margin-top: 10px;
	padding: 3px;
	width: 100%;
	grid-column: 1 / -1;

}

#footer a {
	padding: 10px;
	font-size: 	15px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}

#profile_pic_thumbnail {
	display: grid;
	place-items: center;

	grid-row: 2;
	gap: 10px; 
    padding: 1px 10px 10px 10px;
    background-color: whitesmoke;
    height: 100px;
}

#Stracciatella_ice_cream_dish {
	grid-row: 1;
	padding: 3px;
}



#content {
	grid-row: 3;
	width: 100%;
	grid-column: 1 / -1;
	max-width: 530px;
	margin-left: 15px ;
	text-align: left;
}