
@import url('font.css');

body {
    background: black;
}

.bg {
    width: 110%;
    position: fixed;
    top: 0;
    left: calc(-5%);
    z-index: -10;
    filter: blur(16px);
    opacity: 40%;
}

* {
    padding: 0;
    margin: 0;
    color: whitesmoke;
    font-family: 'Comic Sans', sans-serif;
}

.wrapper {
    margin: 0 auto;
    width: 80vw;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
}

.goto-link {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.header-logo {
    font-size: 32px;
}

.header-menu {
    list-style: none;
    display: flex;
    gap: 16px;
}

.header-menu li {
    font-size: 32px;
}

#main td,
#main th {
    border-right: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
}

#main td:last-child,
#main th:last-child {
    border-right: none;
    padding-left: 24px;
}

.tag {
    display: inline-block;
    border-radius: 16px;
    padding: 4px 8px;
    background-color: rgba(0, 0, 0, 0.5);
    margin-left: 4px;
    margin-bottom: 4px;
    cursor: pointer;
}

#main td:nth-child(1),
#main th:nth-child(1) { width: 5px; }
#main td:nth-child(2),
#main th:nth-child(2) { width: 150px; text-align: center; }
#main td:nth-child(3),
#main th:nth-child(3) { width: 150px; text-align: center; }
#main td:nth-child(4),
#main th:nth-child(4) { width: 650px; font-size: 24px; }
#main td:nth-child(5),
#main th:nth-child(5) { width: 150px; }

#search {
    font-size: 32px;
    margin-top: 32px;
    padding: 16px;
    border-radius: 16px;
    border: none;
    background-color: rgb(0, 0, 0, 0.5);
    width: 600px;
}
#search-lil-text {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 8px 0;
    padding-bottom: 16px;
}
#search-lil-text span {
    display: flex;
    align-items: center;
}
#search-lil-text a {
    display: flex;
    align-items: center;
}
#search-lil-text img {
    margin: 0 4px;
}

main {
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#info {
    text-align: center;
}

@media (max-width: 1024px) {
    .bg {
        width: auto;
        height: 110%;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -10;
        filter: blur(8px);
        opacity: 40%;
    }
}

#load-more td {
    border-bottom: none;
}

@media (max-width: 720px) {
    .header-logo {
        font-size: 16px;
    }
    .header-menu li {
        font-size: 16px;
        text-align: right;
    }

    .wrapper {
        width: auto;
        margin: auto auto;
    }

    #search {
        font-size: 16px;
        width: 250px;
    }

    #search-lil-text,
    #search-lil-text * {
        font-size: 12px;
    }

    #main th {
        display: none;
    }

    .tag {
        display: block;
        border-radius: 8px;
        font-size: 14px;
    }

    #main td:nth-child(1) { display: none; }
    #main td:nth-child(2) { width: auto; font-size: 12px; text-align: center; }
    #main td:nth-child(3) { width: auto; font-size: 16px; flex-direction: row; }
    #main td:nth-child(4) { width: auto; font-size: 16px; }
    #main td:nth-child(5) { width: auto; font-size: 12px; }

    #main * {
        display: flex;
        flex-direction: column;
    }
    #main td {
        border: none;
    }
    #main tbody {
        border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    }
    #main tbody:last-child {
        border-bottom: none;
    }
}

.warn {
    background-color: rgba(255, 120, 50, 0.5);
    padding: 16px;
    border-radius: 32px;
    margin-bottom: 32px;
    text-align: center;
}

.warn h3 {
    font-size: 48px;
}

.warn p {
    font-size: 32px;
}
