*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 100%;
}

@font-face {
    font-family: 'mignotKATABASIC';
    src: url("fonts/mignotKATABASIC.woff2") format("woff2"),
    url("fonts/mignotKATABASIC.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard';
    src: url('fonts/Pretendard-Regular.woff2') format('woff2'),
    url('fonts/Pretendard-Regular.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

body {
    font-family: "Pretendard", Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    word-break: keep-all;
    background-color: #000;
    color: #ffffff;
    width: 100vw;
    height: 100vh;
    padding: 2rem;
    margin: 0;
    cursor: default;
    overflow-x: hidden;
    overflow-y: hidden;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

a {
    text-decoration: none;
    color: white;
    opacity: 0.7;
}

a:hover,
a:active {
    opacity: 1;
}

ul, li{
    list-style: none;
    padding: 0;
    margin:0;
}

.container {
    width: 22rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 0 0 2rem;
}

.container::-webkit-scrollbar {
    display: none;
}

.container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.title img {
    width: 5rem;
}

.title_txt p:first-child {
    margin-bottom: 1rem;
}

.en {
    font-family: "mignotKATABASIC";
}

.title_txt p,
.info span,
.footer span {
    opacity: 0.7;
}

.info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info_item {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.info_item:last-child {
    padding-bottom: 0;
}

.info_item > span:first-child {
    font-family: "mignotKATABASIC";
    text-transform: uppercase;
    width: 5rem;
    flex-basis: 5rem;
    line-height: 1.35;
}

.info_item div{
    width: calc(100% - 5rem);
    flex-basis: calc(100% - 5rem);
}

.footer {
    margin-bottom: 2rem;
}

/* Mobile Device */
@media all and (max-width: 768px) {
    body {
        font-size: 14px;
        line-height: 1.4;
        padding: 1.5rem;
        overflow-y: hidden;
    }

    .container {
        width: 94%;
        height: calc(var(--app-height) - 1.5rem);
        gap: 2rem;
        overflow-y: scroll;
    }

    .container::-webkit-scrollbar {
        display: none;
    }

    .container {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .container_header {
        gap: 2rem;
    }

    .title img {
        width: 4rem;
    }

    .title_txt p:first-child {
        margin-bottom: 1rem;
    }

    .info {
        width: 90%;
        gap: 1rem;
    }

    .info_item > span:first-child {
        font-family: "mignotKATABASIC";
        text-transform: uppercase;
        width: 4.25rem;
        flex-basis: 4.25rem;
        line-height: 1.35;
    }

    .footer {
        margin-bottom: 4rem;
    }
}