/*CSS DOCUMENT*/
@charset "utf-8";

body {
    background-color: lightblue;
}

h1 {
	font-family: courier;
	font-size: 20px;
	text-align: center;
	color: #404040;
	letter-spacing: 6px;
	font-weight:lighter;

}

p {
	font-family: courier;
	font-size: 40px;
	font-variant: small-caps;
	text-align: center;
	letter-spacing: 8px;
	color:#404040;
}


ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #262626;
	box-shadow: 0 9px #000000;
	border-radius:5px;   
}

li {float: left;}
.li1 {float: right;}

li a, .dropbtn {
	display: inline-block;
	color: white;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	border-top-left-radius: 5px;
    	border-top-right-radius: 5px;
    	border-bottom-right-radius: 0px !important;
    	border-bottom-left-radius: 0px !important;
	
}

li a:hover, .dropdown:hover .dropbtn {
	background-color: #ff99ce;
}


.dropdown-content {
	display: none;
	position: absolute;
	margin-top: -5px;
	background-color: #262626;
	width:137px;
	z-index: 1;  
	border-radius: 0 0 5px 5px;
	box-shadow: 0 9px #000000 !important;
}

.dropdown-content a {
	color: white;
	padding: 5px 5px;
	text-decoration: none;
	display:block;
	text-align: center; 
	
}

.dropdown-content a:hover {background-color: #fbd0e6}

.dropdown:hover .dropdown-content {
	display: block;
	block-size: auto;
}

li{	
	font-family: verdana;
	font-size: 15px;
	font-variant: small-caps;
}

.li1{
	font-family: verdana;
	font-size: 15px;
	font-variant: small-caps;
}

.city{
	background-color: #abb5ba;
	color: #404040;
	padding: 5px;
	box-shadow: 0 9px #ffcce6;
	border-radius:5px;

}

.button{
	
	display: inline-block;
	padding: 10px 15px;
	font-size: 20px;
	font-family: verdana;
	font-variant: small-caps;
	cursor:pointer;
	text-align:center;
	text-decoration: none;
	outline:none;
	color:#fff;
	background-color: #9ab3e5;
	border:none;
	border-radius:5px;
	box-shadow: 0 9px #2f5cb6; 
}
.button:hover{background-color:#25488e}

.button:active{
	background-color: lightblue;
	box-shadow: 0 5px #2f5cb6;
	transform: translateY(4px);
}
