@font-face {
    font-family: 'Bahnschrift Condensed';
    src: url('../font/bahnschrift.ttf') format('truetype');
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100%;
    background-color: #3E79D5;
    color: black;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Bahnschrift Condensed', sans-serif;
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: moz-none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-touch-action: manipulation;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
}

button{
    cursor: pointer;
}

a,
label,
span {
    text-decoration: none;
    color: #88B2FF;
    transition: color 0.3s ease-in-out;

}

::placeholder {
    color: #3E79D5 !important;
}
