/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Jan 25, 2019, 5:12:26 PM
    Author     : jerem
*/

ul {
    text-align: left;
    display: inline;
    margin: 0;
    padding: 15px 4px 17px 0;
    list-style: none;
}
ul li {
    font: bold 20px/18px sans-serif;   /* <- to change the menu text size */
    display: inline-block;
    margin-right: -4px;
    position: relative;
    padding: 15px 37px; /* <-to change the width of the menu */
    background: #ffd700;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    color: #000;
}
ul li:hover {
    background: #ffd700;
    color: #ffff00;
}
ul li ul {
    padding: 0;
    position: absolute;
    top: 48px;
    left: 0;
    width: 250px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    display: none;
    opacity: 0;
    visibility: hidden;
    -webkit-transiton: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -ms-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    -transition: opacity 0.2s;
}
ul li ul li { 
    background: #ffd700; 
    display: block; 
    color: #fff;
}
ul li ul li:hover { background: #1abc9c; }
ul li:hover ul {
    display: block;
    opacity: 1;
    visibility: visible;
}
.home {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.contact {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
a:link {
    text-decoration: none;
    color:black;
}
a:visited {
    text-decoration: none;
    color:black;
}
a:hover {
    text-decoration: none;
    color:#ffff00;
}
a:active {
    text-decoration: none;
    color:black;
}
#topwrapper {
    margin-left:auto;
    margin-right:auto;
    width:1200px;
    height:350px; /* original height is 430px */
    border:1px solid black; 
}
#whitebox {
    width:960px;
    height:1100px;
    background-color:white;
    margin-bottom:50px; 
    padding-left: 120px;
    padding-right: 120px;
    padding-top: 50px;
    padding-bottom: 100px;
}
body {
    background-color:black;
}
#contentarea{
    width: 1200px;
    height: 600px;
    margin-left: auto;
    margin-right: auto;
}