* {
    box-sizing: border-box;
}

html {
    background-image: linear-gradient(rgb(101, 199, 228), rgb(167, 224, 167));
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 200%;
}

header {
    background-image: url(../img/topimg.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}

header h2 {
    font-size: 200%;
    color: darkgreen;
    text-align: center;
    margin-left: 1.8em;
    padding: .3em;
    text-shadow: 3px 3px 3px lightseagreen;
}

header h3 {
    font-size: 60%;
    font-style: italic;
    color: brown;
    text-align: right;
    padding: .1em 1em;
}

#navbar ul {
	list-style: none;
	position: relative;
}
#navbar ul li {
	float: left;
}
#navbar ul li a {
    display: block;
	width: 200px;
    text-align: center;
	padding: .3em 0;
	text-decoration: none;
	background-color: darkorange;
	color: peachpuff;
	font-weight: bold;
	border: 2px solid #1d954d;
    border-radius: 30%;
}

#navbar ul li a.citydrop {
	border-right: none;
}
#navbar a.current {
	color: darkred;
}
#navbar ul ul {
    display: none;
    position: absolute;
    top: 100%;
}
#navbar ul ul li {
	float: none;
}
#navbar ul li:hover > ul {
	display: inline-flex;
}
#navbar > ul::after {
	content: "";
	display: block;
	clear: both;
}
a:focus, a:hover {
	font-style: italic;
}

#navbar a:hover {
    background-color: darkmagenta;
    color: black;
}

.contain {
    display: grid;
    grid-template-areas: 'left middle middle middle middle right';
}

.first,.second,.third {
    padding: 1em 1em;
}

.first {
    grid-area: left;
}

.second {
    grid-area: middle;

}

.third {
    grid-area: right;
}

main h4 {
    font-family: sans-serif;
    font-size: 140%;
    text-decoration: none;
    text-align: center;
    color: firebrick;
}

main p {
    font-family: sans-serif;
    font-size: 100%;
    text-align: center;
    color: slateblue;
    padding-bottom: 1em;
    border-bottom: .1em dotted darkgreen;
}

img {
    border: .2em solid aliceblue;
}

.club {
    transform: rotate(-10deg);
    margin-top: 5em;
    margin-bottom: 8em;
}

.trevi {
    transform: rotate(8deg);
    margin-top: 8em;
    margin-bottom: 8em;
}

.alloro {
    transform: rotate(5deg);
    margin-bottom: 8em;
}

.amnesia {
    transform: rotate(-6deg);
    margin-bottom: 9em;
}

.temple {
    transform: rotate(-9deg);
    margin-bottom: 11em;
}

.duck {
    transform: rotate(6deg);
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}