*{
    font-family:'Courier New', Courier, monospace;
}

body{
    background: #ffe1cf;
    background: radial-gradient(circle, rgba(255, 225, 207, 1) 0%, rgba(222, 171, 144, 1) 100%);
}

.title{
    color: rgb(170, 130, 88);
    text-align: center;
    font-size: 40px;
    text-shadow: 0 8px 10px #595959;
}

/*NavBar*/

.navbar{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5%;
    border-bottom-left-radius: 150px;
    border-bottom-right-radius: 150px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    box-shadow: 0 5px 15px #595959;
}

ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgb(170, 130, 88);
}


li a:hover{
    background-color: rgb(143, 117, 88);
    text-decoration: none;
}

a{
    display: block;
    padding: 18px 40px;
    color: #ffe1cf;
    font-size: 19px;
    text-decoration: none;
}