body {
  margin: 0;
  padding: 0;
}

.center {
  width: 1000px;
  margin: auto;
}

#banner {
  background-image: url("./images/01.png");
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 900px;
}

.section {
  margin-top: 20px;
  text-align: center;

  .section-title {
    font-size: 36px;
  }
}

#item-list {
  margin: auto;
  width: 1800px;
  display: flex;

  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;

  .item {
    display: inline-block;
    margin: 0 10px;
    position: relative;

    .title {
      font-size: 40px;
      position: absolute;
      bottom: 10px;
      left: 10px;
      color: #fefffe;
      font-style: italic;
      text-shadow: 1px 2px #333;
    }
  }
}

#footer {
  padding-top: 100px;
  min-height: 100px;
  text-align: center;
}
