@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

::-webkit-scrollbar{display:none;}

*{
    margin:0; 
    padding:0;
    border:0;
 
}

a{text-decoration: none;
mix-blend-mode: difference;}

html{background-color: black;}

.body{
    width:100%;
    height:100%;
    font-family: "Noto Sans", sans-serif;
    overflow-x: scroll;  
    background-color: black;
}



.title{
    position:fixed;
    z-index:999;
    white-space:nowrap;
    top:0.5rem;
    text-align: center;
    left:50%;
    transform: translate3d(-50%, 0px, 0px);
    display: block;
}


.name {
    background: none;
}

h1{

    font-family: "Noto Sans", sans-serif;
    color:rgb(0, 106, 255);
    font-weight:500;
    font-size:20px;
}

h2{

    color:rgb(0, 106, 255);
    font-family: "Noto Sans", sans-serif;
    font-weight:200;
    font-size:20px;
}

.start{

    color: rgb(255, 255, 255);
    background: none;
    height:2rem;
    width:100%;
    text-align: center;
    border-radius: 2rem;
    outline:none;
    margin:3px auto 0 auto;
    font-weight:400;
    font-size:20px;
    border: 2px solid  rgb(255, 255, 255);
    cursor:pointer;
    margin-top:7px;

}

.title > div { 

    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.start:hover{
    background-color:rgb(0, 106, 255);
    color:rgb(0, 0, 0);
    border: 2px solid  rgb(0, 106, 255);
    cursor:pointer;
}





.nav-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    background:transparent;/* 투명한 배경 */
    align-items: center;
    padding: 1rem 0;
    z-index: 10;
    mix-blend-mode:difference;
}

.nav-item {
    font-family: "Noto Sans", sans-serif;
    font-size:20px;
    font-weight:400;
    text-align: center;
    white-space: nowrap;
    padding: 0.5rem 1rem;
    mix-blend-mode:difference;
    
}



.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%; /* 영상이 부모 너비 기준으로 비율 유지 */
}

/* 비디오 공통 스타일 */
.content video {
    max-width: 100%;     /* 창 너비를 넘어가지 않음 */
    width: 100%;         /* 부모 너비에 맞게 */
    height: auto;        /* 비율 유지 */
    margin: 0 auto;      /* 중앙정렬 */
    display: block;
}
   
img{
    max-width: 100%;     /* 창 너비를 넘어가지 않음 */
    width: 100%;         /* 부모 너비에 맞게 */
    height: auto;        /* 비율 유지 */
    margin: 0 auto;      /* 중앙정렬 */
    display: block;
}

