body {
    margin: 0;
    min-width: 100px;
    background-color: #303030;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

nav {
    background-color: rgb(20, 20, 20);
    padding: 8px;
    display: flex;
    align-items: center;
    & > a {
        color: rgb(190, 190, 190);
        text-decoration: none;
        padding: 8px 12px;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 600;
        transition: 0.2s color linear;
        list-style-type: none;
        &:hover {
            color: white;
        }
    }
    & > p {
        color: rgb(92, 92, 92);
        font-size: 14px;
        margin: 0;
        position: absolute;
        right: 8px;
    }
}

main {
    list-style-type: none;
    margin: 8px;
    & > li {
        font-weight: 500;
        font-size: 18px;
        margin: 8px 0;
        background-color: rgb(36, 36, 36);
        padding: 20px;
        color: white;
        border-radius: 24px;
        & > div {
            display: flex;
            margin-bottom: 12px;
            align-items: center;
            & > * {
                overflow: hidden;
                white-space: nowrap;
                text-overflow: ellipsis;
            }
            & > p {
                max-width: calc(50% - 2px);
                margin: 0;
                font-size: 14px;
                color: #eee;
                margin-right: 4px;
            }
            & > a {
                font-size: 14px;
                color: rgb(66 146 255);
                text-decoration: none;
                &:hover {
                    text-decoration: underline;
                }
            }
        }
        & > * {
            margin: 4px 0;
        }
        & > a {
            display: block;
            font-size: 14px;
            color: rgb(189, 189, 189);
            text-decoration: none;
        }
        & > span {
            float: inline-start;
            font-weight: 900;
            margin-right: 8px;
            color: #cec2ff;
            margin-bottom: 0;
        }
        & > p {
            word-break: break-all;
        }
    }
}

footer {
    position: relative;
    bottom: 0;
    background-color: rgb(20, 20, 20);
    color: rgb(226, 226, 226);
    padding: 8px;
    font-size: 14px;
    text-align: center;
    & span {
        margin: 2px;
    }
}

@media (max-width: 250px) {
    footer span {
        white-space: normal !important;
    }
}

#nowarp {
    white-space: nowrap;
}

#select {
    background-color: #303030;
    font-size: 16px;
    color: white;
}

a,
h1,
h2,
h3,
h4,
h5,
h6,
span,
p {
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
        "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

.noMR {
    margin-top: 0;
}
