body {
    padding: 15px;
    margin: 5px;
    font-family: Arial;
    font-size: 17px;
}
h1 {
    text-align: center;
    transition: all .2s ease-in-out;
    transition: color(#ffe4e1);
    font: 400 50px/0.8 'Great Vibes', Helvetica, sans-serif;
    color: #fff;
}
h1:hover {
    transform: scale(1.05);
    font-size: 50px;
    color: #ffe4e1;
}
h1 a, visited {
    color: #222;
    display: block;
    padding: 2px;
    text-decoration: none;
}
#nav {
    background-color: #ffe4e1;
    border-radius:4%;
}
#nav_wrapper {
    width: 2000px
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
}
#nav ul {
    list-style-type: none;
    padding: 20;
    margin: 4px;
    position: relative;
    min-width: 200px;
}
#nav ul li {
    display: inline-block;
    transition: .2s ease-in-out;
    border-radius:7%;
}
#nav ul li:hover {
    background-color: #fff0f5;
    transform: scale(1.1);
}
#nav ul li a, visited {
    color: #222;
    display: block;
    padding: 20px;
    text-decoration: none;
    transition: .2s ease-in-out;
}
#nav ul li:hover ul {
    display: block;
    background-color: #fff0f5;
    transform: scale(1.1);
    position:absolute;
    left:0px;
    margin:0 0 0 0;
    padding: 0 0 0 0;
}
#nav ul ul {
    display: none;
    position: absolute;
    background-color: #ffe4e1;
    border-top: -2px;
    margin-left: -5px;
    transition: none;
    transform: none;
}
#nav ul ul li {
    display: block;
    transition: none;
    border-radius:0%;
}
#nav ul ul li a:hover {
    background-color: #fffaf0;
    color: #f08080;
}

h2 {
    padding: 10px;
    margin: 30px;
    margin-bottom: 20px;
    font-size: 24px;
    color: #222;
}
p {
    padding: 3px;
    margin-left: 40px;
    margin-right: 40px;
    font-family: Arial;
    color: #222;
}
table {  
    color: #333;
    width: 100%; 
    border-collapse: collapse; 
    border-spacing: 0; 
}
td, th {  
    border: 1px solid transparent;
    height: 30px; 
    width: 25px;
}
th {  
    background: #DFDFDF;  
    font-weight: bold;
}
td {  
    background: #FAFAFA;
    text-align: center;
}       
tr:nth-child(even) td { 
    background: #F1F1F1; 
}        
tr:nth-child(odd) td { 
    background: #FEFEFE; 
}  
