@charset "utf-8";

/* 폰트 import 정리 */

/* google - roboto font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* google - Righteous font */
@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');

/* google - Noto Sans Korean font */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');

/* google - NATS font */
@import url('https://fonts.cdnfonts.com/css/nats');

/* google - Russo One font */
@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');










/*기본적인 css*/

*{
    margin: 0;
    padding: 0;
    color:#223440;
}

html, body{
    position: relative;
    width: 100%;
    height: 100%;
}
a{
    text-decoration: none;
    color: inherit;
}

ul{
    list-style: none;
}

button{
    cursor: pointer;
}

.center_all {
 width: 1200px;
 background-color: aqua;
 margin: 0 auto;
}

img{
    background-size: cover;
}





/*로고, 메뉴 font*/

.roboto-header-logo {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-size: 40px;
    font-style: normal;
}

.roboro-menu{
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 28px;
    font-style: normal;
}

.Righteous-title{
  font-family: "Righteous", sans-serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  text-shadow: 0px 3.81px 3.81px rgba(0, 0, 0,0.25);
  text-decoration: underline;
  text-decoration-color: currentColor;
  color:white;
  text-decoration-thickness: 6%;
  text-underline-offset : 23.5%;
  font-size: 42px;
}


/*헤더 css*/


header nav{
    background-color: white;
    height: 80px;
    display: flex;
    align-items: center;
    position: relative;
    text-align: center;
    line-height : 45px;
}

header>nav>h1{
    height: 45px;
    width: 345px;
}

header nav ul{
    position: absolute;
    right: 0px;
    display: flex;
    margin: auto;
}

header nav ul>li>a{
    width: 150px;
    height: 45px;
    display: block;
    margin: auto 0 ;
}

header nav ul>li>a:hover{
    color: #FFC31F;
}

.nav_point{
    color: #035AA6;
}

.nav_point>a:hover{
    color: #035AA6;
}

/*전체적인 컨텐츠 부분 영역 지정*/

.content_element{
    height: calc(100% - 80px);
    width: inherit;
    background-color: aquamarine;
}

.content_element>ul {
    height: 100%;
    width: inherit; 
}

.content_element>ul>li{
    height: inherit;
    width: inherit;
    position: relative;
    background-color: antiquewhite;
}



/* 버튼 애니메이션 */

.someDiv{
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

