@charset "utf-8";
#section {
  width: 1100px;
  margin: 0 auto;
}

#section .title {
  font-size: 32px;
  color: #7a8564;
  font-weight: bold;
  padding: 20px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th {
  background: rgb(0 0 0 / 30%);
  color: #fff;
}

th, td {
  padding: 10px;
  border-bottom: 1px solid lightgray;
  text-align: center;
}

/*================ 반응형 처리 ============= */
@media ( max-width: 768px ) { 
  #section {
    width: 100%;
  }
  
  #section .title {
    font-size: 16px;
    text-align: center;
  }

  table {
    width: auto;
    margin: 0 5px 5px;
    font-size: 13px;
  }

}  