*{
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
    font-family: "Kanit", sans-serif;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0px;
    background-color: #000;
    background-size: 100% 100%;
}

.bold {
    font-weight: 800;
}


/* ------------- MAIN OUTPUT --------------- */
#outputDiv {
    display: inline;
    position: absolute;
    color: #fff;
    font-size: 24px;
    padding: 100px;
    width: 100vw;
    height: 100vh;

    transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
}


@media screen and (max-width: 720px) {
    #logo {
        font-size: 30px;
        font-weight: 700;
    }

    #navBarList {
        gap: 0px;
    }

    #outputDiv {
        padding: 80px 60px;
    }
}