
body {
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: rgb(243, 243, 243);
}

header {
    border-bottom: 5px solid rgb(177, 177, 177);
    border-radius: 6px;
    height: 50px;
    color: rgb(66, 66, 66);
}

ul {
    list-style-type: none;
    padding: 0 0 0 10px;
    border-left: 5px solid rgb(177, 177, 177);
    border-radius: 6px;
}

li {
    padding-bottom: 5px;
}

a:link, a:visited {
    background-color: rgb(243, 243, 243);
    color: black;
    border: 3px solid rgb(143, 143, 143);
    border-radius: 4px;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    width: 50px;
}

a:hover, a:active {
    background-color: rgb(143, 143, 143);
    color: rgb(243, 243, 243);
  }