header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color : aqua;
  z-index: 100;
}

nav ul{
  display: flex;
  justify-content: space-around;
  list-style-type: none;
  padding: 15px 0;
}

nav ul li a{
  text-decoration: none;
}

main{
  margin-top: 80px; /* ヘッダーの高さに合わせる */
}
.container {
  /* ヘッダ分のマージンをあける */
  margin-top: 100px;
}