body, html {
    margin: 0;
    font: 1em, sans-serif;
    background-color: #777777;
}
.main-content {
    padding: 30px;
    font-size: 1.25em;;
}
footer {
    position: auto;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #333333;
    color: #dbb67b;
    text-align: center;
}
.logo {
    float: left;
    height: 55px;
    padding: 7px 30px;
    font-size: 3em;
    font-family: sans-serif;
    line-height: 42px;
    background-color: #333333;
    color: #dbb67b;
}
* {
    box-sizing: border-box;
}
.main-content1 {
    padding-left: 50px;
}

/* NAVBAR ###########################################################*/

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333333;
    font-size: 1.5em;
    text-align: right;
    font-family: sans-serif;
}
li {
    float: left;
}
li a, .dropbtn {
    display: inline-block;
    color: #dbb67b;
    text-align: center;
    padding: 13.5px 16px;
    text-decoration: none;
}
li a:hover, .dropdown:hover .dropbtn {
    background-color: #555555;
}
li.dropdown {
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333333;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
.dropdown-content a {
    color: #dbb67b;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}
.dropdown-content a:hover {
    background-color: #555555
}
.dropdown:hover .dropdown-content {
    display: block;
}

/* NAVBAR END #####################################################*/



/* CONTACT FORM #####################################################*/

.contact-text p {
    width: 75%;
    margin-top: 0px;
    margin-bottom: 39px;
}
.contact-form {
    margin-top: 23px;
    margin-bottom: 0;
    padding-bottom: 20px;
}
.main-content h2 {
    font-family: sans-serif;
    margin: 0;
    padding: 5px;
}
input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}
input[type=submit] {
    background-color: #333333;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
input[type=submit]:hover {
    background-color: #555555;
}
.container {
    border-radius: 5px;
    background-color: #777777;
    padding: 0, 0, 20px;
    font-family: sans-serif;
    width: 75%
}

/* CONTACT FORM END ####################################################*/

/* CALENDAR ########################################################### */

.main {
width:200px;
border:1px solid black;
}

.month {
background-color:black;
font:bold 12px verdana;
color:white;
}

.daysofweek {
background-color:gray;
font:bold 12px verdana;
color:white;
}

.days {
font-size: 12px;
font-family:verdana;
color:black;
background-color: lightyellow;
padding: 2px;
}

.days #today{
font-weight: bold;
color: red;
}    

/* CALENDAR END ######################################################## */