@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

*{
    box-sizing: border-box;
}
html, body {
    margin: 0;
    padding: 0;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    width: 100vw;
    height: 100vh;
    background-image: url(./img/back.svg);
    background-repeat: no-repeat;
    background-position: center bottom;
    font-family: 'Noto Sans KR', sans-serif;
  }

  canvas {
    display: block;
  }
  main{
    position: absolute;
  }

.preview{
    width: 200px;
    height: 253px;
    background-color: aliceblue;
    position: absolute;
    z-index: 99;
    transform: translate(60px,-50%);
    left: 50%;
    top: 50%;
    display: none;
    background-image: url(img/소근소근.png);
    background-repeat: no-repeat;
    background-position:center center;
    background-size:cover;
}

.preview{}

.background{
    display: none;
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 99;
}

.modal{
    overflow: hidden;
    width: 30vw;
    height: 80vh;
    border-radius: 10px;
    position: absolute;
    left: 56%;
    right: 18%;
    top: 50%;
    background-color: rgb(255, 255, 255);
    transform: translate(0%,-50%);
    z-index: 99;
}

.back{
    width: 40px;
    height: 40px;
    background-color: rgb(245, 245, 245);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 24px;
    top: 24px;
    cursor: pointer;
}
.back img{
    right: 0;
    width: 14px;
    height: 14px;
}
.Constellation{
    width: 400px;
    height: 400px;
    left: 18vw;
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
}
.Conimg{
    background-image: url(img/constellation/Constellation_car.png);
    position: absolute;
    z-index: 99;
    width: 230%;
    opacity: 0.08;
    top: -30px;
    left: 50%;
    transform: scaleX(-1) translateX(31%);
    height: 150%;
    background-size: cover;
    /* background-color: brown; */
}

.Conname{
    position: absolute;
    /* background-color: aqua; */
    width: 400px;
    text-align: center;
    color: #FFFFFF;
    bottom: -230px;
    left: 50%;
    font-size: 40px;
    transform: translateX(-50%);
}

.Conname span{
    display: block;
    font-size: 24px;
    opacity: 0.8;
}

.tooltip{
    position: absolute;
    top: 280px;
    left: 404px;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.tooltip1{
    position: absolute;
    background-color: rgb(78, 78, 78);
    width: 20px;
    height: 20px;
    transform: translateY(-0px) translateX(-50%) rotate(45deg);
    opacity: 1;

}
.tooltip2{
    border-radius: 12px;
    font-weight: 500;;
    color: rgb(255, 255, 255);
    padding: 12px 16px;
    width: 160px;
    top: -60px;
    transform: translateY(-0px) translateX(-50%);
    background-color: rgb(78, 78, 78);
    position: absolute;
    opacity: 1;
}


.twinkle{
    box-shadow: 0px 0px 12px 12px rgba(255, 255, 255, 0.352);
    animation:  slidein 4s ease-in-out infinite;
}

@keyframes slidein {
    0%{
    box-shadow: px 0px 0px 12px 12px rgba(255, 255, 255, 3.352);
    }
    50% {
    box-shadow: 0px 0px 24px 12px rgba(246, 255, 160, 0.788);
    }
    100%{
    box-shadow: px 0px 0px 12px 12px rgba(255, 255, 255, 3.352);
    }
  }

.innerstar{
    z-index: 999;
    width: 26px;
    border-radius: 100%;
    height: 26px;
    background-color: white;
    position: absolute;
    box-shadow: 0px 0px 12px rgb(238, 238, 230);
    /* transform: translate(50px,50px); */
}

.innerstar2{
    z-index: 999;
    width: 26px;
    border-radius: 100%;
    height: 26px;
    background-color: white;
    position: absolute;
    box-shadow: 0px 0px 12px rgb(238, 238, 230);
    /* transform: translate(50px,50px); */
}


.box{
    width: 100%;
    height: 100%;
    /* background-color: blueviolet; */
}

.title{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    /* background-color: aqua; */
    color: white;
    position: absolute;
    bottom: -46px;
    font-size: 20px;
}
.title .name{
    font-weight: 800;
}
.title .Dname{
    font-weight: 400;
    font-size: 14px;
}


.menu{
    width: 160px;
    /* background-color: rgba(0, 255, 255, 0.158); */
    color: white;
    position: absolute;
    right: -120px;
    bottom: 0;
    right: -160px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 24px;
    margin-bottom: 8px;
}
.menu1::before{
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: aliceblue;
    border-radius: 50%;
    margin-right: 12px;
}

.contents{
    width: 100%;
    height: 100%;
    /* background-color: rgba(127, 255, 212, 0.075); */
    padding: 40px 40px 10px 40px;
    overflow-y:scroll;
    color: rgb(36, 35, 39);
}

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

.Con-title{
    font-size: 40px;
    font-weight: 700;
    display: inline;
    position: relative;
}
.contents .Dname{
    transform: translate(120% , -28px);
    font-size: 14px;
    position: absolute;
    right: 0;
}

.sub-title{
    font-weight: 400;
    margin-top: 20px;
    font-size: 14px;
    width: 80%;
    color: rgb(152, 152, 152);
}
.content{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.text{
    text-align: justify;
    color: rgb(53, 53, 53);
}
h4{
    margin-top: 100px;
    font-size: 24px;
    width: 410px;
}

.image1{
    display: inline-block;
    width: 100%;
    height: 400px;
    background-color: antiquewhite;
    background-image: url(img/background3.jpg);
    background-position: center;
    background-size: cover;
}

.video{
    margin-top: 30px;
}

.profile{
    display: flex;
    width: 100%;
    height: 240px;
    gap: 24px;
    margin-bottom: 60px;
}


/* 디자이너 이미지 */
.profile .image2{
    flex: 1;
    background-image: url(img/designer/designer1.jpg);
    background-size: cover;
    background-position: center;
    /* background-color: aqua; */
}

.profile .info{
    flex: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* background-color: bisque; */
}
.profile .info h5{
    margin-top: 0px;
    font-size: 24px;
}
.profile .info p{
    margin-top: -24px;
    font-size: 16px;
    color: rgb(90, 90, 90);
    margin-bottom: 0px;
}

.profile .info h6{
    font-size: 20px;
    color: rgb(39, 39, 39);
}

.profile .info .Email{
    text-decoration-line: underline;
    margin-top: -40px;
    font-size: 16px;
    color: rgb(90, 90, 90);
}


/*두번째 모달 정보*/
.contents2{
    transform: translate(0%);
    top: 0;
    left: 100%;
    position: absolute;
    transition: all 0.4s ease-in-out;
}
.contents1{
    position: absolute;
    transition: all 0.4s ease-in-out;
}