html {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica
              Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji
              Apple Chancery;
}
/* 메뉴 햄버거 아이콘 */
img.list {
    width: 50px;
    height: 50px;
    padding: 25px;
  }
  
  .arrow {
    width: 1200px;
    margin: auto;
  }
  
  /* 오른쪽 화살표 */
  img.arrow {
    position: relative;
    width: 50px;
    padding: 25px;
    left: 1100px;
    top: -660px;
  }
  
  img.leftarrow {
    /* 좌우반전 */
    transform:rotate(90deg); 
            -moz-transform: scaleX(-1); 
            -o-transform: scaleX(-1); 
            -webkit-transform: scaleX(-1); 
            transform: scaleX(-1);   
            filter: FlipH;
            -ms-filter: "FlipH";
    position: relative;
    width: 50px;
    padding: 25px;
    left: -100px;
    top: -650px;
  }
  
  /* 하단바 */
  .menubar {
    margin: auto;
    margin-top: -410px;
    width: 1200px;
    height: 10px;
    background-color: rgb(255, 255, 255);
    border: 2px solid;
    border-color: rgb(84, 43, 70);
    border-radius: 10px;    
    margin-bottom: 0px;
  }
  
  /* 하단바 원 */
  .circle {
    position: relative;
    background-color: rgb(0, 0, 0);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    top: -23px;
    left: 850px;
  }
  
  .menulist {
    text-align: center;
    margin: auto;
    margin-top: 4px;
    width: 1200px;
    margin-bottom: 0px;
  }
  
  .menu {
    text-decoration-line: none;
    color: rgb(31, 17, 42);
    letter-spacing :1px; /* 자간 조절 */
    margin: 60px;
    font-size: 15px;
    margin-bottom: 0px;
  }
  
  