@font-face {
    font-family: 'Tenada';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2210-2@1.0/Tenada.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'DungGeunMo';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/DungGeunMo.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
button {
    margin: 0;
    padding: 0;
    cursor: pointer;
}
#menu_container {
    display: flex;
    height: 80px;
    width: 100%;
    background-color: rgb(235, 235, 235);
}
#menu_container > div {
    display: flex;
    justify-content: center;
    align-items: center;
}
#logo {
    height: 100%;
    width: 230px;
    font-size: 27px;
    font-family: Tenada;
    margin-top: 5px;
    cursor: pointer;
}
#menu_etc {
    width: 100px;
}
.hamgurger {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}
.hamgurger > span {
    width: 100%;
    height: 3px;
    background-color: black;
    position: absolute;
    top:50%;
    transform: translateY(-50%);
}
.topham {
    top:0!important;
}
.botham {
    top:100%!important;
    transform: translateY(-100%)!important;
}
#menu_container > div:nth-child(2) > div {
    font-family: DungGeunMo;
    font-size: 22px;
    padding: 0 4% 0 4%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
@keyframes dropdown {
    from {
        height: 0;
    }
    to {
        height: calc-size(max-content, size);
    }
}
.hidden_menu {
    background-color: rgb(100, 100, 100);
    position: fixed;
    transform: translateY(calc(50% + 40px));
    padding: 5px;
    overflow-y: hidden;
    display: none;
    animation: dropdown 1s forwards;
    z-index: 100;
}
.hidden_menu > div {
    font-size: 18px;
    padding: 3px;
}
.hidden_menu > div:hover {
    background-color: rgb(200, 200, 200);
}