:root{
    --background-color-1: #121212;
    --background-color-2: #333333;

    --point-color-1: #FFD700;
}

@font-face {
    font-family: "NanumGothic";
    src: url("/fonts/NanumGothic.otf");
}

*{
    margin: 0;
    padding: 0;

    font-family: "NanumGothic";
}

html, body{
    width: 100%;
    height: auto;

    background-color: var(--background-color-1);
}

.wrapper{
    width: 100%;
    height: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.header{
    width: 100%;
    height: 80px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.header_title span{
    color: white;
    font-size: 25px;
    font-weight: 900;
}

.main{
    width: 100%;
    height: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu{
    width: 100%;
    height: 70px;

    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.category{
    width: 25%;
    height: 40px;

    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;

    background-color: transparent;

    display: flex;
    justify-content: center;
    align-items: center;
}

.category span{
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 300;
}

.category.active{
    background-color: #FFD700;
}

.category.active span{
    color: black;
    font-size: 13px;
    font-weight: 600;
}
