
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

html {
    font-size: 16px;
    user-select: none;
}

#app {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 255, 255, 0);
    overflow: auto;
    z-index: 100;
    pointer-events: none;
    height: 100%;
    width: 100%;
    display: none;
}

#app>* {
    position: fixed;
}

.logo {
    left: 0;
    top: 0;
}
.logo img{
    height: 5rem;
}

.menu {
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 1rem;
    margin-left: 0.6rem;
}

.menu .menu-item {
    float: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-bottom: 0.6rem;
    font-size: 0.8em;
    pointer-events: all;
    cursor: pointer;
}

.menu .menu-item img {
    width: 2.5rem;
    pointer-events: none;
}

.tool {
    right: 0.6rem;
}

.tool .tool-item {
    pointer-events: all;
    margin-top: 0.6rem;
    cursor: pointer;
    text-align: center;
}
.tool .tool-item img{
    width: 2.3rem;
    display: inline-block;
}
.tool .tool-item p{
    font-size: 0.8em !important;
    color: white;
}
#modal {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.685);
    pointer-events: all;
    text-align: center;
    display: none;
}

#modal>div {
    display: inline-block;
    width: 100%;
    height: 100%;
    max-width: 900px;
    position: relative;
    box-sizing: border-box;
    padding: 40px 0;
}

#modal>div .close {
    display: block;
    right: -4rem;
    top: 1rem;
    font-size: 2rem;
    color: white;
    padding: 30px;
    position: absolute;
    cursor: pointer;
}

#languages {
    pointer-events: all;
    left: 0%;
    top: 0%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    text-align: center;
}
#languages>div{
    background: rgba(255, 255, 255, 0.644);box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.644); position: absolute;padding: 10px;user-select: none;left: 50%;top: 50%;transform: translate(-50%,-50%);border-radius: 20px;
    font-size: 0;
}
#languages>div>div{
    display: inline-block;
    font-size: 60px;
    font-weight: 100;
    margin-left: 20px;
    color: #d6d6d6;
    cursor: pointer;
    position: relative;
    background-color: #282828;
    padding: 10px;
    border-radius: 20px;
    text-align: center;
}
#languages>div>div:first-child{
    margin-left: 0;
}
#languages>div>div:hover{
    color: #31AAEC;
}

@media (max-width: 800px) {

    #modal>div {
        padding: 0;
    }
    .logo img{
        height: 3rem;
    }
    #modal>div .close {
        display: block;
        right: 0;
        top: -0.5rem;
        font-size: 2rem;
        color: white;
        padding: 10px;
        position: absolute;
        cursor: pointer;
    }
}