h3 {
    font-size: 24px;
  color: rgb(89, 91, 92);
}

.mystyle-row-bar {
    width: 100%;
    height: 2px;

    background-color: white;
}


 
a:visited { /*링크를 방문한 이후*/
    color: red;
}
 
a:hover { /*마우스를 올려놓을 때*/
    color: green;
}
 
a:active { /*클릭하는 순간*/
    color: yellow;
}

/* 기본은 데스크탑용 전체 텍스트 보임 */
.text-mobile-short {
  display: none;
}
.text-desktop-full {
  display: block;
}

/* 모바일 화면일 경우 - 짧은 텍스트만 보임 */
@media screen and (max-width: 767px) {
  .text-mobile-short {
    display: block;
    padding-inline: 2rem; /* 좌우 여백 */
  }
  .text-desktop-full {
    display: none;
    padding-inline: 2rem; /* 좌우 여백 */
  }
}