body {
    margin:0;
    width:100%;
    height:100%;
}

@font-face {
    font-family: 'InkLiquid';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/InkLipquid.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}

* {
    box-sizing:border-box;
    margin:0;
    padding:0;
    font-family: "Noto Sans KR", sans-serif;
    letter-spacing: -1px;
}

a {
    color:inherit;
    text-decoration: none;
}

.hand-write {
    font-family: 'InkLiquid';
}

.top-wrapper {
    width:100%;
    padding-left:15px;
    padding-right:15px;
    display:flex;
    flex-direction: column;
    align-items:center;
}

.cont-wrapper {
    width:100%;
    max-width:1200px;
    min-height:100% !important;
}

nav {
    position:absolute;
    /*background-color:#222;*/
    background: linear-gradient(rgba(255,255,255,1), rgba(255,255,255,0));
    /*box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.3);*/
    width:100%;
}

@media (max-width:450px) {
    nav {
        font-size:0.7em;
    }
}

.nav-container {
    height:80px;
    padding-bottom:20px;
    display:flex;
    flex-direction:row;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
    color:#1a2183;
}

.nav-links {
    margin:0;
    text-decoration: none;
    list-style: none;
    display:flex;
    flex-direction: row;
    gap:15px;
    font-size:1.3em;
}

.banner {
    width:100%;
    height:650px;
    max-height:70%;
    background-color:black;
    position:relative;
    z-index:-1;
}

.banner-img-wrapper {
    position:absolute;
    width:100%;
    height:100%;

    display:flex;
    justify-content: center;
    align-items: center;
}

.banner-img {
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.section-title {
    font-weight:400;
    font-family: 'InkLiquid';
    font-size:2.4em;
    margin-bottom:20px;
}

.welcome-section {
    height:auto;
    background-color:#18213f;
}

.welcome-section > div {
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap:80px;
    max-width:1200px;
    flex-wrap: wrap;
    padding: 100px 0px 100px 0px;
}

@media (max-width: 1205px) {
    .welcome-section > div {
        gap:80px;
        max-width:480px;
    }
}

.card-btn {
    width:200px;
    height:200px;
    color: rgb(255, 245, 103);
    border: 1px solid rgb(255, 245, 103);
    border-radius: 15px;
    background-color:#18213f;
    display:flex;
    flex-direction:column;
    justify-content: center;
    align-items:center;
    cursor:pointer;
    transition: box-shadow 0.1s, background-color 0.3s, color 0.3s;
    gap:10px;
    padding-top:15px;
    box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.5);
}

.card-btn:hover {
    background-color: rgb(255, 245, 103);
    box-shadow: none;
    color:#18213f;
}
.card-btn:active {
    box-shadow: inset 1px 1px 10px 0px rgba(0, 0, 0, 0.5);
}

.card-btn > i {
    font-size:5em;
}
.card-btn > p {
    font-size:1.2em;
    font-weight:500;
}

@media (max-width: 570px) {
    .welcome-section > div {
        gap:20px;
    }

    .card-btn {
        width:150px !important;
        height:150px !important;
        font-size:0.9em;
        padding-top:10px;
    }
}

.poster-section {
    background-color:white;
    padding-top: 100px;
    padding-bottom: 10px;
    min-height:400px;
    color:black;
}

.poster-section > img {
    width:1200px;
    max-width:90%;
    max-height:90vh;
    object-fit: contain;
}

.info-gradient-layer {
    background:linear-gradient(#FFF, #222);
    padding-top:30px;
    padding-bottom:50px;
}

.info-section {
    padding-top:60px;
    padding-bottom:70px;
    background-color:#222;
    color:white;
}

.info-grid h3 {
    color:rgb(255, 238, 180);
}

.info-section > div {
    display:flex;
    flex-direction:column;
    align-items:center;
}

.info-grid {
    display:flex;
    flex-direction:row;
    justify-content: center;
    flex-wrap:wrap;
    font-size:1.1em;
    gap:50px;
    margin-top:15px;
    margin-bottom:50px;
}

@media (max-width:685px) {
    .info-grid {
        gap:20px;
    }
    .info-grid > div {
        width:300px;
        max-width:95vw;
    }
}

.info-grid > div > div {
    margin-bottom:20px;
}

.playlist-grid {
    text-align: center;
}

.gallery-section {
    padding-top:100px;
    padding-bottom:100px;
}

.gallery-section > div {
    display:flex;
    flex-direction:column;
    align-items:center;
}

.gallery-grid {
    display:grid;
    max-width:100%;
    grid-template-columns: repeat(auto-fill, 200px);
    gap:3px;
}

.gallery-grid > div {
    aspect-ratio: 1 / 1;
}

@media (max-width:1056px) {
    .gallery-grid > div:nth-of-type(n+13) {
        display:none;
    }
}

@media (max-width:650px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, 120px);
    }
    .gallery-grid > div:nth-of-type(n+13) {
        display:none;
    }
}

@media (max-width:410px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, 110px);
    }
}

.PH {
    background-color: rgb(160, 160, 160);
    box-shadow:0px 0px 0px 0px rgba(0,0,0,0.5);
    /*transition: box-shadow 0.1s;*/
    background-position: center;
    background-size: cover;
}

.PH:hover {
    box-shadow:0px 0px 10px 0px rgba(0,0,0,0.5);
    cursor:pointer;
}

.footer-section {
    padding-top:25px;
    padding-bottom:15px;
    background-color: #222;
    color:white;
}

.footer-baseline {
    list-style: none;
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    margin-top:20px;
    font-size:0.9em;
    flex-wrap:wrap;
    gap:5px 20px;
    word-break:keep-all;
    color:#AAA;
}

.image-viewer-modal {
    margin: auto;
    border:none;
    background: none;
    outline: none;
    overflow:hidden;
}

.image-viewer-modal::backdrop {
    backdrop-filter: blur(5px);
    background-color:#2228;
}

.image-viewer-modal > img {
    width:90vw;
    max-width:800px;
    max-height:90vh;
    object-fit:contain;
    object-position: center;
}