body {
    background-color: antiquewhite;
}

nav {
    background-color: antiquewhite;
    height: auto;
    font-family: cursive;
    text-align: center;
    display: inline-block;
    height: 25px;
    font-size: 1em;
    width: 100%;
}

nav ul {
    list-style-type: none;
    display: inline-block;
    height: 25px;
    margin: 0;
    padding: 0;
}

nav ul li {
    font-size: 1em;
    line-height: 25px;
    display: inline-block;
    position: relative;
    background-color: wheat;
    border-bottom: double sandybrown;
    height: 25px;
}

nav ul li ul {
    list-style-type: none;
    display: none;
    position: absolute;
    float: left;
    left: 1px;
    padding: 3px;
}

nav ul li ul li {
    width: 100%;
}

nav ul li:hover ul {
    display: block;
    cursor: pointer;
}

nav ul li:hover {
    cursor: pointer;
}