@font-face {
    font-family: "DeYiHei";
    src: url(../font/SmileySans-Oblique-2.ttf);
}

*{
    margin: 0;
    padding: 0;
}

header{
    background-color: white;
    height: 60px;
    width: calc(100% - 10px);
    display:flex;
    align-items: center;
    border-radius: 15px;
    position: fixed;
    padding-top: 5px;
    margin-right: 5px;
    margin-left: 5px;
    margin-top: 5px;
    z-index: 9999;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.3);
}
header img{
    height: 40px;
    width: auto;
    margin-left: 40px;
    margin-right: 40px;
}
header p{
    font-family: 'Lobster', cursive;
    font-size: 28px;
    margin-bottom: 3px;
}
header ul{
    position:absolute;
    right:0;
    top:0;
    line-height:70px;
}
header li {
    display:inline;
    margin-right:4vw;    
}
header a {
    color:#2c2c2c;
    text-decoration: none;
}
header a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: bold;
}

body {
    background-color: white;
}

footer {
    background-color: #000000;
    color: #B7B7B7;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}