@font-face {
    font-family: 'Makgeolli';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_two@1.0/Makgeolli.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

main > div.noticeDiv {
    width: 60vw;
    height: 80vh;
    margin: auto;
    margin-bottom: 5vh;
    padding-top: 10px;
}

main > div.noticeDiv > .noticeTitle {
    font-family: 'Makgeolli';
    font-size: 40px;
}

/* ------------------------ table ----------------------- */
main > div.noticeDiv > table {
    width: 100%;
    text-align: center;
}

main > div.noticeDiv > table > thead {
    border-width: 1px 0px; /* 위아래 테두리 */
    background-color: #f2f2f2;
}

main > div.noticeDiv > table > thead * {
    font-family: 'Makgeolli';
    font-size: 20px;
    height: 30px;
}

main > div.noticeDiv > table > tbody * {
    font-size: 15px;
}

main > div.noticeDiv > table > tbody td {
    border-width: 1px 0px;
    height: 40px;
}

main > div.noticeDiv > table tbody a {
    color: black;
}

@media screen and (max-width: 900px) {
    main table.bigTable {
        display: none;
    }
}

/* ----------------------- small table ----------------------- */
main > div.noticeDiv > table.smallTable {
    display: none;
}

@media screen and (max-width: 900px) {
    main > div.noticeDiv {
        width: 350px;
        height: 100%;
        padding-top: 20px;
    }

    main > div.noticeDiv > table.smallTable {
        display: table;
    }
}

main > div.noticeDiv > table.smallTable .number {
    border-right: 1px solid black;
}

main > div.noticeDiv > table.smallTable > thead > tr > td.number {
    width: 50px;
}

main > div.noticeDiv > table.smallTable > thead > tr > td.title {
    width: 300px;
}

main > div.noticeDiv > table.smallTable > tbody span.etc {
    font-size: 10px;
    opacity: 90%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

