/* root setting */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR&display=swap');

/* 로컬 세팅, 적용값은 var("")로 사용되며 기본 설정값이 동일하게 입력됨*/

:root {
    --text-color: #000000;
    --backgroung-color: #fffefe;
    --accent-color: rgba(0, 0, 0, 0.959);
    --font-family: Arial, Helvetica, sans-serif,;
}


/* 레이어 확인용 */

/*
border: 2px solid red;
*/

/* 홈페이지 스타일 셋팅 */

* {
    padding: 0;
    margin: 2px 0 2px 0;
    text-decoration: none;
    list-style: none;
}

/* 상단 링크메뉴들 색상 및 밑줄 제거 셋팅 */

.navco {
    color: white;
}

.navco:hover {
    color: blue;
    text-decoration: none;
}

.logoco {
    color: black;
}

.logoco:hover {
    color: black;
    text-decoration: none;
}

/* body 부분 전역셋팅 */

body {
    background-color: var(--backgroung-color);
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 16px;
}

/* header setting */

/* 머리 로고와 회원가입 부분 */
/* 큰 박스 영역 */

#header {
    position: relative;
    display: flex;
    width: 100%;
    height: 50px;
    justify-content: center;
    align-items: center;
}

/* 실제 적용 박스 영역 */
#header .header_group {
    background: var(--backgroung-color);
    position: relative;
    display: flex;
    width: 1130px;
    height: 100%;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0 30px;
}

/*header 박스 내 왼쪽 로고 영역*/
#left-area {
    margin-right: auto;
    font-size: 23px;
    font-weight: bold;
    align-items: center;
}

#left-area span {
    color: #877cd8;
}
/*header 박스 내 오른쪽 회원 영역*/
#right-area {
    margin-left: auto;
    font-size: 15px;
    font-weight: bold;
    align-items: center;
}

#right-area ul {
    display: flex;
    margin: auto;
    padding: 0 5px;
    text-align: center;
}

#right-area ul li {
    display: inline-block;
    padding: 0 15px;
    border-left: 1px solid rgb(228, 225, 225);
}

#right-area ul li:first-child{
    border-left: none;
}

#right-area ul li a {
    text-decoration: none;
    color: black;
}

#right-area ul li a:hover {
    text-decoration: none;
    color: red;
}

/* 메뉴 부분 */
/* navbar setting */
/* 큰 박스 영역 */
#navbar {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 메뉴영역 실제 인터넷 환경 세팅 영역 */
#navbar .nav_group {
    display: flex;
    gap: 10px;
    margin: 0 auto;
    width: 1130px;
    height: 100%;
    background-color: rgb(153, 155, 160);
    justify-content: space-between;
    align-items: center;
    z-index: 100000;
}

/* navbar 박스 내 왼쪽 메뉴 설정 */
#left-items {
    margin-right: auto;
    font-weight: bold;
    align-items: center;
}

#left-items ul {
    display: flex;
    margin: auto;
    padding: 0 5px;
    text-align: center;
}

#left-items ul li {
    display: inline-block;
    font-size: 16px;
    padding: 0 15px;
}

/* navbar 박스 내 오른쪽 메뉴 설정 */
#right-items {
    margin-left: auto;
    font-weight: bold;
    align-items: center;
}

#right-items ul {
    display: flex;
    margin: auto;
    padding: 0 5px;
    text-align: center;
}

#right-items ul li {
    display: inline-block;
    font-size: 16px;
    padding: 0 15px;
    border-left: 1px solid rgb(228, 225, 225);
}

#right-items ul li:first-child{
    border-left: none;
}


/* 메인 박스 영역 세팅 */
/* 큰 박스 영역 */
#container {
    position: relative;
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
}

/* 실제 적용 박스 영역 */
#container .con_group {
    background: var(--backgroung-color);
    position: relative;
    display: flex;
    width: 1130px;
    height: auto;
    margin: 0 auto;
    padding: 10px 10px;
}

#container:after {
    display: table;
    clear: both;
}

/* 메인 박스 (왼쪽) 설정 영역 */
.column_left {
    margin: 0 auto;
    height: auto;
    width: auto;
    font-size: 18px;
    font-weight: bold;
    color: black;
}

/* 하단 소개글 설정 영역 */
/* 큰 박스 영역 */
#footer {
    background-color: var(--backgroung-color);
    position: relative;
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
}

/* 실제 적용 박스 영역 */
#footer .foo_group {
    background-color: var(--backgroung-color);
    position: relative;
    display: flex;
    margin: 0 auto;
    padding: 5px 10px;
    width: 1130px;
    height: auto;
}

/* footer 박스 내 왼쪽 설명 영역 */
#footer .bottom_left {
    margin-right: auto;
    font-family: 'Noto Sans KR', sans-serif;
    padding: 3px 3px;
    color: black;
}

#footer .bottom_left p {
    font-size: 20px;
    font-weight: bold;
}

#footer .bottom_left .leftcontent p {
    font-size: 15px;
    color: rgb(25, 119, 226);
}

#footer .bottom_left .leftcontent .social {
    margin: 20px 0 0 0;
}

#footer .bottom_left .leftcontent .social a {
    padding: 0 2px;
}

#footer .bottom_left .leftcontent .social a span {
    height: 40px;
    width: 40px;
    background: skyblue;
    line-height: 40px;
    text-align: center;
    font-size: 15px;
    border-radius: 5px;
    transition: 1s;
}

/* 가장 아래 박스 내 왼쪽 박스 이미지 아이콘 마우스오버시 효과 */
#footer .bottom_left .leftcontent .social a span:hover {
    background: rgb(226, 34, 114);
}

/* footer 박스 내 가운데(나머지) 설명 영역 */
#footer .bottom_middle {
    margin-left: auto;
    font-size: 15px;
    font-weight: bold;
    text-align: left;
    color: black;
}

/*#footer .bottom_middle p {
    line-height: 5px;
}*/

#footer .bottom_middle .centercontent {
    font-family: 'Noto Sans KR', sans-serif;
    padding: 3px 3px;
    border-radius: 5px;
    transition: 1s;
}
#footer .bottom_middle .centercontent a span {
    height: 20px;
    width: 20px;
    text-align: center;
    font-size: 15px;
    border-radius: 5px;
    transition: 1s;
}

#footer .bottom_middle .centercontent a span:hover {
    background: #f12020;
}

#footer .bottom_middle .centercontent .text {
    font-size: 15px;
    font-weight: bold;
    padding-left: 10px;
}

/* 홈페이지 최하단 영역 */

#footer_bottom {
    position: relative;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
}

#footer_bottom .end_group {
    position: relative;
    display: flex;
    margin: 0 auto;
    padding: 5px 5px;
    width: 1130px;
    height: auto;
}

#owner_left{
    display: block;
    margin-right: auto;
}

#owner_right{
    display: block;
    margin-left: auto;
}

#owner_right p {
    display: block;
    margin: 0 auto;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
    line-height: 18px;
}

#footer_bottom .end_group_bottom {
    background-color: var(--backgroung-color);
    position: relative;
    display: flex;
    margin: 0 auto;
    padding: 5px 5px;
    width: 1130px;
    height: auto;
    text-align: center;
}

#copyright {
    height: auto;
    margin: 0 auto;
    align-items: center;
    text-align: center;
}

#copyright p {
    display: block;
    margin: 0 auto;
    align-items: center;
    text-align: center;
    font-weight: bold;
    font-size: 15px;
}