body {
    font-family: impact;
    background-image: url(./img.gif);
}

.test-table>tr>td{
    border: 1px solid black;
    font-size: 16px;
    font-weight: bold;
}

.test {
    width: 100px;
    height: 100px;
    background-color: blue;
    position: relative;
    animation: move 1s ease-in-out infinite alternate;
  }
  
  @keyframes move {
    from {
      left: 0;
    }
    to {
      left: 50px;
    }
  }

.color-test {
    color: rgba(213, 187, 165, 0.953);
}
.font-test {
    font-size: 12px;
}

.test-pa {
    padding: 5px;
}

.button {
    font-family: impact;
    background-color: #4CAF50; /* 배경색상 */
    border: none; /* 테두리 없음 */
    color: black; /* 글자색상 */
    padding: 15px 32px; /* 내부 패딩 */
    text-align: center; /* 텍스트 중앙정렬 */
    text-decoration: none; /* 밑줄 없음 */
    display: inline-block; /* 인라인 블록 표시 */
    font-size: 16px; /* 글자크기 */
    margin: 4px 2px; /* 마진 */
    cursor: pointer; /* 커서 모양 */
    border-radius: 10px; /* 버튼 테두리 곡선 */
}

div{
    text-align: center; /* 수평 중앙 정렬 */
}