
/*body, html {
  margin: 0; padding: 0; height: 100%;
  background: #000;
  font-family: 'Roboto', sans-serif;
  color: #ccc;
  overflow: hidden;
}*/
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #000; /* 검은 배경 */
  background-image: url('img/camera.jpg'); /* 넣고 싶은 이미지 경로 */
  background-repeat: no-repeat; /* 이미지 반복 안함 */
  background-position: center center; /* 이미지 중앙 배치 */
  background-size: cover; /* 화면 꽉 채우기 */
}



#container{
  /*margin: 0 auto;*/
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /*width: 1700px;*/
}
.contents{
  flex: 1;
}

*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
ul{
list-style: none;
}
a{
text-decoration: none;
}
header{
width: 100%;
height: 100px;
}
nav{
float: right;
width: 900px;
height: 100px;
padding-top: 40px;
}
#top_menu > li{
float: left;
position: relative;
}
#top_menu > li > a{
display: block;
padding: 20px 50px;
color: rgb(255, 255, 255);
font-size: 1.1em;
font-weight: 600;
transition: transform 0.15s;
}
#top_menu > li > a:hover{
color: rgb(73, 31, 4);
text-shadow: 0-1px rgb(112, 82, 42);
transform: scale(1.1);
}
footer{
width: 100%;
background-color: rgb(82, 74, 62);
/*  position: relative;
left: 0;
bottom: 0;*/
color: rgb(255, 255, 255);
text-align: center;
font-size: 0.8em;
line-height: 1.5em;
padding: 15px;
}
h2{
font-size: 2em;
text-align: center;
color: rgb(255, 255, 255);
text-shadow: 2px 2px 4px rgba(94, 94, 94, 0.3);
letter-spacing: 0.3em;
margin-top: 20px;
}

 .wrapper {
    text-align: center;
    max-width: 500px;
    animation: fadeIn 2s ease forwards;
    opacity: 0; /* 초기 투명도 */
  }


  .wrapper {
    text-align: center;
    max-width: 500px;
    animation: fadeIn 2s ease forwards;
    opacity: 0; /* 초기 투명도 */
  }

  /*.ct_textt{
    width: 100%;
    height: 200px;
    margin: 10px auto;
    text-align: center;
    margin-top: 50px;
    font-family: 'InkLipquid';
}*/

.ct_textt > h1{
    font-size: 4.5em;
    letter-spacing: 0.5em;
    color: rgb(255, 255, 255);
    margin-top: 20px;
    animation: ani_title 6s;
    text-align: center;
}




  .ct_text{
    color: rgb(255, 255, 255);
    font-weight: bold;
    font-size: 20px;
    line-height: 38px;
    text-align: center;
    margin: 50px;
}

.ct_box{
  width: 400px;
  background-color: rgba(248, 244, 244, 0.4);
  border-radius: 15px;
  padding: 25px;
  color: #0f0f0f;
  margin: 20px auto;
  text-align: center;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
.ct_box > p{
  font-size: 1.1em;
  line-height: 2em;
}
.ct_img{
  width: 450px;
  padding: 30px;
  margin: 20px auto;
  text-align: center;
}
.ct_img > img{
  width: 100%;
  height: auto;
}

@keyframes ani_title{
  from{opacity: 0.0;}
  to{opacity: 1.0;}
}



