@import url('https://fonts.googleapis.com/css?family=Fredoka&display=swap');

* {
    cursor: url('../img/common/cursor.png'), auto !important;
}

body {
    margin: 0;
    font-family: 'Fredoka', 'Trebuchet MS';
    background-color: rgb(20, 18, 18);
    background-image: url('../img/common/bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.page-title {
    height: 80px;
    display: block;
    text-align: center;
    margin: 40px auto 40px auto;
    color: whitesmoke;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.6);
}

.page-title img {
    width: 60px;
    height: 60px;
    padding: 2px;
    border: 2px solid #241A43;
    border-radius: 80px;
    margin-right: 10px;
    vertical-align: middle;
}

.page-title span {
    font-size: 24pt;
    font-weight: bold;
    vertical-align: middle;
    line-height: 80px;
    display: inline-block;
}

.no-select {
    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
}