/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
	height: 100%;
	margin: 100; 
	text-align: center; 
	width: 100%; 
	background-image: url("palms4k.jpg"); 
	background-color: white;
	background-attachment: fixed;
	}

h1 {font-family: DIN Condensed, 'DIN Condensed', papyrus; color:white; font-size: 128px; text-align: center;}

h3 {font-family: Helvetica Neue, 'UltraLight', papyrus; color:white; font-size: 48px; font-weight: 200; margin: 5cm; text-align:left;}

p {font-family: Helvetica Neue, 'UltraLight', papyrus; color:white; font-size: 40px; font-weight: 100; text-align: left;}

li {margin:5em 0;}

.table {
	display: table;
	margin: 0 auto;
	}
	
.vtable {
	display: table;
	margin: 0 auto;
	font-family: DIN Condensed;
	padding-top: 5px;
	}	
	
a:visited {text-decoration: none; color: white;}	

a:link {
	text-decoration: none;
	color: white;
}

a:hover {text-decoration: underline;
}
	
ul#horizontal-list li {
	display: inline; 
	font-family: DIN Condensed, 'DIN Condensed', papyrus; 
	letter-spacing: 1.5px;
	color:white; 
	font-size: 16px; 
	font-weight: 100;
	padding-top: -4px;
	padding-left: 40px;
	padding-right: 40px;
	}
	
ul#vertical-list li {
	display: inline;
	font-family: DIN Condensed, 'DIN Condensed', papyrus;
	letter-spacing: 1.5px;
	color: white;
	font-size: 16px;
	font-weight: 100;
	padding-top: 10px;
	padding-bottom: 5px;
	}
	
.dropbtn {
	width: 80px;
    letter-spacing: 1.5px;
    background-color: transparent;
    color: white;
    padding: 10px;
    font-size: 16px;
    font-family: DIN Condensed;
    Font-weight: 200;
    border: white;
    cursor: pointer;
}

.vtable1 {
    position: relative;
    display: inline-block;
}

.vtable2 {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: none;
    min-width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-content a {
	text-align: left;
    color: white;
    font-family: DIN Condensed;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.vtable1:hover .dropdown-content {
    display: block;
}

.vtable2:hover .dropdown-content {
    display: block;
}
