* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* 
body {
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #333;
} */

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.bttn {
    width: 200px;
    height: 50px;
    cursor: pointer;
    background: rgb(26, 0, 130);
    margin: 10px;
    border: none;
    border-radius: 10px;
    box-shadow: -5px -5px 15px #444, 5px 5px 15px #222, inset 5px 5px 10px #444, inset -5px -5px 10px #222;
    color: rgb(80, 68, 255);
    font-size: 13px;
}

button:hover {
    box-shadow: -5px -5px 15px #444, 5px 5px 15px #222, inset 5px 5px 10px #222, inset -5px -5px 10px #444;
    font-size: 15px;
    transition: 500ms;
}

button:focus {
    outline: none;
}

.red:hover {
    color: #f07171;
    text-shadow: 0px 0px 10px #f07171;
    /* font-size: 15px; */
}

.green:hover {
    color: #93f071;
    text-shadow: 0px 0px 10px #93f071;
}

.blue:hover {
    color: #71b7f0;
    text-shadow: 0px 0px 10px #71b7f0;
}

.purple:hover {
    color: #b971f0;
    text-shadow: 0px 0px 10px #b971f0;
}