#allPage {
    width: 100%;
}
body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #FFFFFF;
    background-color: #47454A;
}
footer {
    text-align: center;
    font-size: small;
}
p {
    text-align: center;
}
#result {
    color: #D9EB37;
}
#banner {
    color: #D9EB37;
    text-align: center;
}
a {
    color: #FFFFFF;
    text-decoration: none;
}
a:hover {
    color: #D9EB37;
}
fieldset {
    margin-bottom: 15px;
    border-radius: 10px;
    border-color: #D9EB37;
    box-shadow: 5px 5px 5px #D9EB37;
    padding: 6px;
}
nav ul {
    list-style-type: none;
    text-align: center;
}
nav li {
    padding-top: 0px;
    padding-bottom: 0px;
    display: inline-block;
    margin-left: 30px;
    position: relative;
}
nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bolder;
    text-transform: uppercase;
}
h4 {
    padding-left: 15px;
}
nav a::before {
    content: "";
    display: block;
    height: 5px;
    background-color: #D9EB37;
    margin-bottom: 10px;
    padding-top: 0px;
    width: 0px;
    transition: all ease-in-out 300ms;
}
nav a:hover::before {
    width: 100%;
}
nav a:hover {color: #D9EB37;}