*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    list-style:none;
    text-decoration:none;
}

body{
    font-family:'맑은 고딕', sans-serif;
    background-color:#1f1f1f;
    color:#f5f5f5;
    line-height:1.6;
}

main{
    width:80%;
    margin:30px auto;
}

h2{
    text-align:center;
    margin-bottom:20px;
    color:#ffcc70;
    font-size:2rem;
}

/* 검색창 */
input{
    display:block;
    width:60%;
    margin:30px auto;
    padding:12px;
    border:none;
    border-radius:30px;
    font-size:1rem;
    background-color:#2f2f2f;
    color:white;
}

/* 메뉴 */
nav ul{
    display:flex;
    justify-content:center;
    gap:30px;
    margin-bottom:30px;
}

nav a{
    color:white;
    font-weight:bold;
    transition:0.3s;
}

nav a:hover{
    color:#ffcc70;
}

/* 이미지 */
.content{
    text-align:center;
    margin-bottom:15px;
}

.content img,
.gallery img{
    width:300px;
    height:400px;
    object-fit:cover;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.5);
}

/* 설명글 */
.textbox{
    text-align:center;
    margin:15px 0 30px;
    color:#d6d6d6;
}

/* 카드 */
.card{
    text-align:center;
    margin-bottom:40px;
}

/* 사이드 영역 */
aside{
    display:flex;
    gap:30px;
    justify-content:center;
    margin-top:40px;
}

aside article{
    width:350px;
    background-color:#2c2c2c;
    padding:20px;
    border-radius:15px;
}

aside h2{
    color:#ffcc70;
    margin-bottom:15px;
    font-size:1.4rem;
}

aside li{
    margin-bottom:10px;
}

/* 푸터 */
footer{
    text-align:center;
    background-color:#111;
    padding:20px;
    margin-top:50px;
    color:#aaa;
}

/* 반응형 */
@media screen and (max-width:768px){
    main{
        width:95%;
    }

    nav ul{
        flex-direction:column;
        align-items:center;
        gap:15px;
    }

    aside{
        flex-direction:column;
        align-items:center;
    }

    input{
        width:90%;
    }

    .content img,
    .gallery img{
        width:90%;
        height:auto;
    }
}