@font-face {
    font-family: 'GmarketSans';
    font-weight: 700;
    font-style: normal;
    src: url('https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansBold.eot');
    src: url('https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansBold.eot?#iefix') format('embedded-opentype'),
         url('https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansBold.woff2') format('woff2'),
         url('https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansBold.woff') format('woff'),
         url('https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansBold.ttf') format("truetype");
    font-display: swap;
} 
html {
    scroll-behavior: smooth;
    font-family: 'GmarketSans';
}
* {
    word-break: keep-all;
    word-wrap: break-word;
}
body {
    margin: 0px;
    padding: 0px;
}
a {
    margin: 0px;
    padding: 0px; 
    text-decoration: none !important;
    color: inherit;
}
/* 헤더 */
.navbar {
    color: darkblue;
    background-image: url('https://image.deepblue429.kr/image/stars.png'); /* 원하는 이미지 경로로 변경하기 */
    padding: 24px;
}
.navbar > a > h1 {
    margin: auto;
    max-width: 980px;
}
/* 사이트 저작권 표시(푸터) */
footer {
    text-align: center;
    padding: 24px;
    margin-top: 60px;
    background-color: aliceblue;
}
/* 메인 페이지 이미지 목록 */
.content {
    min-height: 100vh;
    max-width: 980px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    padding: 24px;
}
@media screen and (max-width: 700px) {
    .content {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 450px) {
    .content {
        grid-template-columns: 1fr;
    }
}
.content > a > div {
    border: solid 0.13em rgb(92, 92, 92);
    border-radius: 24px;
    overflow: hidden;
    transition:  all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
}
.content > a > div:hover {
    border: 2px solid black;
    filter: brightness(110%);
    -webkit-filter: brightness(110%);
}
.content > a > div > img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1/1;
}
.content > a > div > div {
    padding: 12px;
    height: 82px;
    font-size: x-large;
    font-weight: bold;
    overflow: hidden;
}
.content > a > div > div > div {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical
}
/* 이미지 뷰어 페이지 스타일 */
#viewer {
    max-width: 980px;
    margin: auto;
    margin-bottom: 12px;
    padding: 24px;
}
#viewer > img {
    width: 100%;
    padding-bottom: 12px;
}
/* 카테고리 */
.category {
    max-width: 980px;
    margin: auto;
    padding: 12px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    gap: 8px;
}
.category > a {
    box-shadow: skyblue 0px 0px 3px;
    border-radius: 8px;
    padding: 8px;
    text-align: center;
    background-color: white;
    transition: all;
    transition-duration: 300ms;
}
.category > a:hover {
    filter: brightness(95%);
}
.selected-category {
    background-color: skyblue !important;
}