* {
    user-select: none;
    -ms-user-select: none;
    outline: 0;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    
}

Q {
    font-family: 'Hi Melody', cursive;
}

QA {
    font-family: 'Gamja Flower', cursive;
}

.html {
    width: 100%;
    height: 100%;
}

.body {
    margin: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #ffffff;
    
}

.canvas {
    width: 100%;
    height: 100%;
}
.setcolor {
    color: #FF8000;
    cursor: pointer;
    font-size: 20px;
}
.mun a:hover {
    background-color: skyblue;
    border-radius: 4px;
    color: blue;
}
a {
    text-decoration: none;
    color: #ffffff;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color:  #555cb4;
    padding: 8px 12px;
    height: 160px;
}

.navbar_logo {
    font-size: 40px;
    color: white;
}

.navbar_logo i {
    color: white;
}

.navbar_menu {
    display: flex;
    list-style: none;
    padding-left: 0;
    font-size: 40px;
    text-align: center;
    font-weight: bolder;
    color: #FF8000;
}

.navbar_menu li {
    padding: 8px 12px;
}
.navbar_menu li:hover {
    background-color: orange;
    border-radius: 4px;
}

.navbar_icons {
    list-style: none;
    color: white;
    display: flex;
    padding-left: 0;    
    cursor: pointer;
    font-size: 40px;
    font-family: 'Sunflower', sans-serif;
    padding: 8px 12px;
}

.navbar_toogleBtn {
    display: none;
    position: absolute;
    right: 32px;
    font-size: 24px;
    color: white
}
.intro {
    font-family: 'Nanum Pen Script', cursive;
}
.intru {
    font-weight: bold;
    font-size: 50px;
    color: #04B404;
    text-align: center;
}

.intruduce {
    font-size: 35px;
    color: cornflowerblue;
    text-align: center;
}

.Q {
    color: #000000;
    font-size: 35px;
    font-weight: bold;
}

.A {
    font-size: 30px;
}

.discordlink {
    color: #7289DA;
    text-align: center;
    font-size: 30px;
    background-color: #7289DA;
}
.discordlink a:hover {
    background-color: orange;
    border-radius: 4px;
}
.discordimg {
    background-color: #7289DA;
    width: 100px;
    height: 100px;
}
.koreanbotslink {
    color: #7289DA;
    text-align: center;
    font-size: 30px;
    background-color: #2C2F33;
}
.koreanbotslink a:hover {
    background-color: orange;
    border-radius: 4px;
}
.koreanbotsimg {
    background-color: #2C2F33;
    width: 110px;
    height: 100px;
}
.githublink {
    background-color: #000000;
    text-align: center;
    font-size: 30px;
}
.githubimg {
    width: 150px;
}
.githublink a:hover {
    background-color: orange;
    border-radius: 4px;
}
.wafflelink {
    background-color: #FF8000;
    text-align: center;
    font-size: 30px;
}
.waffleimg {
    width: 100px;
    height: 80px;
}
.wafflelink a:hover {
    background-color: orange;
    border-radius: 4px;
}
.topgglink {
    background-color: #7289DA;  
    text-align: center;
    font-size: 30px;
}
.topggimg {
    width: 100px;
    height: 100px;
}
.topgglink a:hover {
    background-color: orange;
    border-radius: 4px;
}
.usetitle {
    font-weight: bold;
    font-size: 30px;
}
.usesubtitle {
    font-weight: bold;
    font-size: 20px;
}
.name {
    font-weight: bold;
    font-size: 35px;
}
.abc {
    font-size: 18px;
}
.bold {
    font-weight: bold;
    font-size: 25px;
}
.title {
font-weight: bold;
font-size: 50px;
}
.subtitle {
font-weight: bold;
font-size: 30px;
}
@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 24px;
        
    }

    .navbar_menu {
        display: none;
        flex-direction: column; 
        align-items: center;
        width: 100%;
    }

    .navbar_menu li {
        width: 100%;
        text-align: center;
    }

    .navbar_icons {
        display: none;
        justify-content: center;
        width: 100%;
    }

    .navbar_toogleBtn {
        display: block;
    }

    .navbar_menu.active,
    .navbar_icons.active {
        display:flex;
    }
}
