body{
    overflow: hidden;
    user-select: none;
    font-family: 'Kanit', 'Noto Color Emoji', 'Noto Sans JP', sans-serif;
}

iframe{
    border-radius: 30px 30px 0 0;
}

.menu{
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: -50vh;
    z-index: 99999;
    transition: all 0.7s cubic-bezier(0, 0.37, 0, 1.20);
}

.menus-text{
    float: left;
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 10px 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 20px;
    margin: 7px 15px 15px 15px;
    transition: all 0.2s;
    color: white;
}

.menus-text:hover{
    transform: scale(1.1);
}

.menus-text:active{
    transform: scale(0.9);
}

.menutext{
    margin-top: 3px;
    margin-left: 15px;
    font-size: 10px;
}

.loading{
    display: flex;
    position: fixed;
    justify-content: center;
    width: 100%;
    height: 100vh;
    z-index: 999999;
    background-color: black;
    color: white;
    font-family: 'Kanit';
}

#loading-js{
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

#tokuly{
    opacity:0;
    transition: opacity 2s cubic-bezier(0.23, 1, 0.32, 1), transform 1s cubic-bezier(0.23, 1, 0.32, 1);
    transform: scale(2);
    text-shadow: 0 0 30px rgb(255, 255, 255);
}

#webapp{
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
}

#madeby{
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

#madebyp{
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.modalwindow {
    position: fixed;
    bottom: -110vh;
    top: 120vh;
    background-color: rgb(48, 50, 51);
    height: 90%;
    width: 100%;
    z-index: 99999;
    touch-action: auto;
    border-radius: 30px 30px 0 0;
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: scroll;
    overflow-y: hidden;
}

.userclose{
    position: fixed;
    display: flex;
    right: 20px;
    margin-top: 10px;
    background-color: rgb(87, 87, 87);
    width: 40px;
    height: 40px;
    justify-content: center;
    border-radius: 50px;
    cursor: pointer;
}