@import url(//fonts.googleapis.com/earlyaccess/notosanskr.css);

body {
    font-family: "Noto Sans KR", sans-serif;
    background-color: lightgray;
    overflow: hidden;
    margin: 0;
}
*{
    box-sizing: border-box;
}

/*전체 틀*/
#wrap{
    width: 100vw;
    height: 100vh;
}

/* 기본 형광펜 */
.highlight {
   background-color: #ffdc3a;    
}

/*링크 연결 시의 변화 X*/
a { text-decoration: none; color: black; }
    a:visited { text-decoration: none; }
    a:hover { text-decoration: none; }
    a:focus { text-decoration: none; }
    a:hover, a:active { text-decoration: none; }

/*상단 네이비 헤더 박스*/
#header{
    width: 100%;
    height: 8%;
    background-color: rgb(6, 3, 77);
    margin: 0;
}

/*상단 네이비 헤더 박스_텍스트*/
#header p{
    font-weight : 900;
    color: white;
    font-size: 3vmin;
    position: relative;
    margin-left: 3vmin;
    top: 50%;
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    margin: 0 ;
    padding-left: 1%;
}

/*상단 리포트 제목을 제외한 부분*/
#main{
    width: 100%;
    height: 92%;
    padding: 5vmin;
    }

/*왼쪽 프로필 박스*/
#left-side{
    width: 33%;
    height: 100%;
    display: inline-block;
   
}

/*왼쪽 프로필 상단*/
#left-side-top{
    width: 100%;
    height: 10%;
    background-color: rgb(255, 255, 255);
    border-radius: 20px 20px 0px 0px;
}

/*왼쪽 프로필 상단_텍스트*/
#left-side-top-title{
    font-weight : 700;
    width: 80%;
    height: 100%;
    display: inline-block;
    background-color: rgb(255, 255, 255);
    border-radius: 20px 20px 0px 0px;
}

/*왼쪽 프로필 상단_텍스트*/
#left-side-top-title p{
    font-size: 3vmin;
    position: relative;
    margin-left: 3vmin;
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    top: 15%;
}

/*왼쪽 프로필 상단_이미지*/
#left-side-main-img{
    width: 40%;
    height: 40%;
    float: left;
    background-color:  rgba(180, 192, 226);
}
#left-side-main-img img{
    width: 15vmin;
    height: 15vmin;
    position: relative;
    left: 50%;
    top: 4vmin;
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}

/*왼쪽 프로필 하단*/
#left-side-main{
    width: 100%;
    height: 90%;
    background-color: rgba(5, 3, 77, 0.295);
}

/*왼쪽 프로필 하단_텍스트*/
#left-side-main-info{
    line-height: 3vmin ;
    width: 50%;
    height: 40%;
    display: inline-block;
    background-color: rgba(180, 192, 226);
}

/*왼쪽 프로필 하단_텍스트*/
#left-side-main-info p{
    margin: 0vmin 0 0 10%;
    font-size: 2.5vmin;
}

/*왼쪽 프로필 하단_이미지*/
#left-side-main-img{
    width: 50%;
    height: 40%;
    float: right;
    background-color:  rgba(180, 192, 226);
}

/*왼쪽 프로필 하단_이미지*/
#left-side-main-img img{
    width: 15vmin;
    height: 15vmin;
    position: relative;
    left: 50%;
    top: 4vmin;
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}

/*왼쪽 프로필 하단*/
#left-side-main-article{
    width: 100%;
    height: 50%;
    padding-top: 5%;
    padding-left: 5%;
    clear: both;
    background-color: rgba(180, 192, 226);
}

/*오른쪽 콘텐츠 박스*/
#right-side{
    width: 64%;
    height: 91%;
    float: right;
    background-color: blueviolet;
}

/*오른쪽 콘텐츠 버튼*/
#right-side-topBtns{
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: space-between;
    background-color: rgb(214, 214, 214);
}

/*오른쪽 콘텐츠 버튼_활성화*/
.right-side-topBtnO{
    width: 32%;
    height: 100%;
    background-color: white;
    text-align: center;
    border-radius: 20px 20px 0px 0px;
}

/*오른쪽 콘텐츠 버튼_활성화*/
.right-side-topBtnO p{
    display: inline;
    font-weight : 500;
    font-size: 3vmin;
    text-align: center;
    position: relative;
    top: 30%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: black;
}

/*오른쪽 콘텐츠 버튼_비활성화*/
.right-side-topBtn{
    width: 32%;
    height: 100%;
    background-color: rgba(69, 104, 209);
    text-align: center;
    border-radius: 20px 20px 0px 0px;
}
#right-side-topBtns :hover{
    cursor: pointer;
    background-color: rgb(152, 173, 235);
    border-radius: 20px 20px 0px 0px;
    color:white;
}

/*오른쪽 콘텐츠 버튼_비활성화*/
.right-side-topBtn p{
    display: inline;
    font-weight : 500;
    font-size: 3vmin;
    text-align: center;
    position: relative;

    top: 30%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: white;
}

/*오른쪽 콘텐츠 박스 하단*/
#right-side-main{
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    background-color: white;
    scroll-snap-type: y mandatory;
}

/*오른쪽 콘텐츠 박스 하단*/
#right-side-main p{
    padding-top: 5%;
    font-weight : 600;
    font-size: 5vmin;
    text-align: center;
}


#right-side-page1{
    width: 100%;
    height: 100%;
    background-color: white;
    scroll-snap-align: center;
}


#right-side-page2{
    font-weight: 600;
    width: 100%;
    height: 100%;
    background-color: white;
    scroll-snap-align: start;
}

#clockbox {
    text-align: center;
    background-color: rgba(69, 104, 209);
    color: white;
    
}

#clock {
    color: white;
    font-size: 5vmin;
}

#apm {
    color: white;
    font-size: 5vmin;
}




 



.speak{
    font-weight : 600;
    font-size: 2vmin;
    line-height: 5vmin;
    text-align: center;
}

/*별점 매기기*/
.star {
    position: relative;
    font-size: 2rem;
    color: #ddd;
  }
  
  .star input {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    opacity: 0;
    cursor: pointer;
  }
  
  .star span {
    width: 0;
    position: absolute; 
    left: 0;
    color: #ffdc3a;
    overflow: hidden;
    pointer-events: none;
  }
  .flowers {
    width: 50vmin;
  }

/*반응형 코드*/
@media screen and (max-width: 760px) {
    #header p{
        font-size: 4.5vmin;
        margin-left: 4vmin;
    }
    #main{
        padding: 0;
    }
    #left-side{
        width: 100%;
        height: 10%;
        margin-bottom: 5%;
    }
    #left-side-top{
        height: 80%;
        border-radius: 0px 0px 20px 20px;
    }
    #left-side-top-title{
        border-radius: 0px 0px 20px 20px;
    }
    #left-side-top-title p{
        font-size: 5vmin;
        margin-left: 5vmin;
        border-radius: 0px 0px 20px 20px;
    }
    #left-side-top-img img{
        width: 13vmin;
        height: auto;
    }
    #left-side-main{
        display: none;
    }
    #right-side{
        width: 100%;
        height: 80%;
    }
    .right-side-topBtn p{
        font-size: 5vmin;
    }
    .right-side-topBtnO p{
        font-size: 5vmin;
    }
    #right-side-main p{
        font-size: 5vmin;
    }
    #right-side-footer p{
        font-size: 5vmin;
    }
    .flowers {
        transform: rotate(-90deg);
    }
    #right-side-page1{
        width: 100%;
        height: 100%;
    }
}

.font-weight-100 {  
    font-weight: 100;
}
.font-weight-200 {   
    font-weight: 200;
}

.font-weight-400 {  
    font-weight: 600;
}
