@font-face {
  font-family: 'Pretendard-Regular';
  src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'TheJamsil5Bold';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2302_01@1.0/TheJamsil5Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

/* 출처: 강원교육서체 */
@font-face {
  font-family: 'GangwonEdu_OTFBoldA';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2201-2@1.0/GangwonEdu_OTFBoldA.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}


body {
    background-image: url("/static/background-image.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;

    font-family: 'GangwonEdu_OTFBoldA';
    font-size: 110%;
    /* font-family: 'TheJamsil5Bold'; */
    /* height: calc(100vh - 70px); */
}
.ppt_creator_title {
  text-align: center;
  font-family: 'TheJamsil5Bold';
}
.ppt_creator_subtitle {
  font-family: 'TheJamsil5Bold';
}
.modal {
  font-family: 'TheJamsil5Bold';
}
.center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 70px);
}
.border-radius {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
}
.transparent-bg {
  background-color: rgba(255, 255, 255, 0.3);
}
.selectable {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
    border: 1px solid #ccc;
    padding: 8px;
    overflow: auto;
}
.selectable::-webkit-scrollbar {
    width: 12px;
}
.selectable::-webkit-scrollbar-track {
    background-color: #f5f5f5;
    border-radius: 10px;
}
.selectable::-webkit-scrollbar-thumb {
    background-color: #FEE2DF;
    border-radius: 10px;
}
.placeholder {
    color: #999;
    font-style: italic;
}
h1.text-center {
    margin-bottom: 30px;
}
.container-fluid {
    padding-left: 30px;
    padding-right: 30px;
    height: calc(100vh - 70px);
}
.col-sm-6 {
    padding: 0 15px;
    max-width: 600px;
}
.button-container {
    text-align: right;
}

#exampleDiv, #contentDiv{
    font-size: 14px;
    height: 300px;
    overflow: auto;
}


#contentDiv {
  scrollbar-color: #FEE2DF #f5f5f5;
  scrollbar-width: thin;
}
/* #contentDiv 스크롤바 스타일 */
#contentDiv::-webkit-scrollbar {
  width: 12px;
}

#contentDiv::-webkit-scrollbar-track {
  background-color: #f5f5f5;
  border-radius: 10px;
}

#contentDiv::-webkit-scrollbar-thumb {
  background-color: #DEF0FE;
  border-radius: 10px;
}

#contentDiv::-webkit-scrollbar-thumb:hover {
  background-color: #DEF0FE;
}



#bbangDiv {
  scrollbar-color: #FEE2DF #f5f5f5;
  scrollbar-width: thin;
  font-size: 20px;
  height: 100px;
  overflow: auto;
}
/* #contentDiv 스크롤바 스타일 */
#bbangDiv::-webkit-scrollbar {
  width: 12px;
}

#bbangDiv::-webkit-scrollbar-track {
  background-color: #f5f5f5;
  border-radius: 10px;
}

#bbangDiv::-webkit-scrollbar-thumb {
  background-color: #DEF0FE;
  border-radius: 10px;
}

#bbangDiv::-webkit-scrollbar-thumb:hover {
  background-color: #DEF0FE;
}



/* 그 외 스크롤바 스타일 */
body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background: #FFFFFF;
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(#fda095, #81cafd);
  transition: all 0.3s ease;
}

#create1 {
  background-color: #fda095;
  border-color: #fda095;
}

#create1:hover {
  background-color: #fd7465;
  border-color: #fd7465;
}

#create2 {
  background-color: #81cafd;
  border-color: #81cafd;
}

#create2:hover {
  background-color: #5ab6fc;
  border-color: #5ab6fc;
}

.vertical-line {
  border-right: 0.5px solid;
  border-image: linear-gradient(to bottom, #F974A3 0%, #3AD8F1 100%);
  border-image-slice: 1;

  /* border-right: 0.5px solid;
  border-image: repeating-linear-gradient(to bottom, transparent, #F974A3 0%, #3AD8F1 100%, transparent);
  border-image-slice: 1; */

  /* 양 끝 단만 투명하게 */
  /* border-right: 0.5px solid transparent;
  border-image: repeating-linear-gradient(to bottom, transparent, #F974A3 0%, #3AD8F1 100%, transparent);
  border-image-slice: 1; */

  height: 100%;
  top: 0;
  right: 0;
}

/* 마크다운에서 코드블럭 때문에 넣었음 */
pre {
  border: 1px solid;
  border-image: linear-gradient(to right, #F974A3, #3AD8F1);
  border-image-slice: 1;
  padding: 10px;
  overflow: auto;
}

/* 마크다운에서 이미지가 원본 그대로 너무 크게 나와서 넣었음 */
img {
  max-width: 100%;
  height: auto;
}

#presenter_text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

#ppt_creator_featured {
  max-width: 700px;
  width: 700px;
}

.index-button {
  border: 2px solid #333;
  border-radius: 5px;
  /* padding: 10px 20px; */
  /* margin: 10px auto; */
  display: block;
  text-align: center;
  text-decoration: none;
  color: #333;
}

.index-button img {
  display: block;
  margin: 0 auto;
}