* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
   
}
.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 영상이 화면을 꽉 채우도록 설정 */
    z-index: -1; /* 콘텐츠 뒤로 이동 */
  }


.present{
    display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
text-align: center;
       padding: 20px;
       color: white;

}

.present p{
    padding: 0 10px;
    font-size: 13px;
    font-family: 'Noto Serif Display', serif;
    font-style: italic;

}



.date{
    display: flex;
    justify-content: space-between;
    padding: 8px;
    border-bottom: 1.2px solid white;
}
.content1{
    color: white;
    display: flex;
    flex-direction: column;
   padding: 20px;
   margin: 40px 12px;
   
  
}

.info{
    border-bottom: 1.2px solid white;  
}

.content1 p {
    line-height: 2;
    font-family: 'Libre Baskerville', serif;
   


}

.content{
    color: white;
    display: flex;
    flex-direction: column;
    margin: 40px 12px;
   padding: 20px;
}

.content p {
    font-size: 15px;
    font-family: 'Libre Baskerville', serif;
    line-height: 2;
   

}


.content4{
    color: white;
    display: flex;
    flex-direction: column;
    margin: 40px 12px;
   padding: 20px;
}

.content4 p {
    font-family: 'Libre Baskerville', serif;
    font-size: 15px;
    line-height: 1.5;

}

h1{
    color: white;
        font-family: 'Libre Baskerville', serif;
        margin: 25px 25px 10px 25px;
        font-size: 27px;

}
h2{
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Noto Serif Display', serif;
    font-style: italic;
    margin: 20px 0;
    padding: 15px 0;
    border-bottom: 1.2px solid white;
    font-size: 24px;
}
h3{
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Libre Baskerville', serif;
    text-decoration: none;
    margin: 20px 0;
    padding: 15px 0;
   
    font-size: 15px;
}


a{
    color: white;
    text-decoration: underline ; /* 선택 사항: 마우스를 올릴 때 밑줄 표시 */
text-decoration-color: white;  
display: flex;
flex-direction: column;
    justify-content: center;
    align-items: center;
}
a:visited {
    color: white; /* 클릭 후에도 기본 색상 유지 */
  }
  a:hover {
    text-decoration: underline ; /* 선택 사항: 마우스를 올릴 때 밑줄 표시 */
text-decoration-color: white;  
}

.content2{
    display: flex;
    flex-direction: column;
   padding: 20px;
   margin: 40px 12px;
   color: white;


}
.content2 p{
    font-family: 'Libre Baskerville', serif;
    font-size: 15px;
    line-height: 1.5;
}

.q{
    font-family: 'Noto Serif Display', serif;
    font-style: italic;
    font-size: 20px;
}

.content3{
    display: flex;
    flex-direction: column;
   padding: 20px;
   margin: 40px 12px;
   color: white;



}

.content3 p{
    font-family: 'Libre Baskerville', serif;
    font-size: 15px;
    line-height: 1.3;
}

.italic{
    font-family: 'Noto Serif Display', serif;
    font-style: italic;
    font-size: 13px;
   
}
.scroll-fade-video {
    width: 100%;
    position: relative; /* 비디오가 스크롤에 따라 움직이는 것을 고정 */
    top: 0; /* 화면 상단에 고정 */
    z-index: 0;
    transition: opacity 0.01s ease; /* 불투명도 변화에 부드러운 전환 효과 추가 */
}
.italic2{
    font-family: 'Noto Serif Display', serif;
    font-style: italic;
    font-size: 17px;
   
}

video::-webkit-media-controls {
    display: none !important;
}

video::-webkit-media-controls-overlay-play-button {
    display: none !important;
}

video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.present, .content1, .content2, .content3, .content4 {
    pointer-events: none;  /* 텍스트 영역이 클릭을 방해하지 않도록 */
}

/* 비디오가 클릭 가능하도록 */
.background-video{
    pointer-events: auto;  /* 비디오가 클릭되도록 */
}

.scroll-fade-video {
    pointer-events: auto;
}

