body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #fafafa;
    color: #A7A8A9;
    font-weight: 200;
    margin: 0;
  }
  
  .ro {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 60px 0 60px 0;
  }
  
  .ro > div {
    margin: 10px; /* 각 요소 사이의 간격 조정 */
  }
  
  .boo {
    width: 400px; /* 이미지 가로 크기 조정 */
    height: 300px; /* 이미지 세로 크기 조정 */
  }
  
  .ro p {
    font-size: 18px; /* 문단 글자 크기 조정 */
  }
  
  .ro button {
    background-color: #dbdbdb;
    color: #FFFFFF;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
  }
  
  .ro button:hover {
    background-color: #0056b3;
  }
  