/*CSSリセット*/
*{
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    box-sizing: border-box;
    font-size: 16px;
    color: #333;
}

    a{text-decoration: none;}
    li{list-style: none;}


/*まとめて横幅を設定*/
header,main,footer{
    max-width: 960px;
    margin: 0 auto;     /*枠の中央寄せ*/
}
/*ヘッダー*/
header{
    background-color: blue;
    min-height: 100px;
}
/*ナビゲーション*/
nav{
    width: 100%;
    background-color: orange;
    min-height: 60px;
}

nav ul{
    display: flex;
    justify-content: center;
    align-items: center;
    /*background-color: darkkhaki;*/
    min-height: 60px;
}

nav ul li a{
    background: #ff0;
    margin: 0px 5px;
    padding: 5px 15px;
    border-radius: 6px;
    color: black;
    filter: drop-shadow(0px 1px 1px #000);
}

nav ul li a:hover{
    background: #ff0;
    color: #f00;
    border-radius: 50px;/*丸角処理*/
}

/*メイン*/
main{
    background-color: honeydew;
    min-height: 600px;
}
/*フッター*/
footer{
    background-color: red;
    height: 300px;
}