@keyframes ubeatzcode {
    0%,
    100% {
        transform: translate(0);
    }
    25% {
        transform: translateX(-2px);
    }
    75% {
        transform: translateX(2px);
    }
}

* {
    box-sizing: border-box;
    text-decoration: none;
    outline: none !important;
}

body {
    margin: 0;
    padding: 15px;
    text-align: center;
    font-family: 'Questrial', sans-serif;
    font-size: 16px;
    line-height: 1.618em;
    background: #303030;
    color: #424242;
}

button {
    font-family: inherit;
    cursor: pointer;
    transition: .25s;
}

.block {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 300;
    display: flex;
    width: 100vw;
    height: 100vh;
    background: #303030;
}

.block span{
    margin: auto;
    padding: 30px;
}

.splash {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 250;
    display: flex;
    width: 100vw;
    height: 100vh;
    background: #303030;
    /* box-shadow: 0 5px 50px #aaa; */
}

.splash .center {
    width: 100%;
    margin: auto;
    padding: 165px 15px 15px;
    background: url('./assets/ubeatz.png') center top no-repeat;
    background-size: 180px;
}

.splash .center h1 {
    margin: 0 0 20px;
    font-family: 'Roboto';
    font-size: 0.9em;
    font-weight: normal;
    color: #FFFFFF;
    letter-spacing: 1.5px;
    /* -webkit-text-stroke: 1px ; */
}

.splash .center input {
    width: 80%;
    margin: 0 0 20px;
    /* font-family: 'Questrial'; */
    font-size: 2em;
    font-weight: normal;
    color: #FFFFFF;
    -webkit-text-stroke: 1px;
    background: #303030;
    text-align: center;
    padding: 30px;
    border: none;
    /* background-color: red; */
}

.splash .center h5 {
    margin: 100px 0 20px;
    /* font-family: 'Questrial'; */
    font-size: 0.7em;
    font-weight: normal;
    color: #FFFFFF;
    -webkit-text-stroke: 1px;
}

.splash .center button{
    margin-top: 30px;
    padding: 15px 30px;
    font-size: 1.25em;
    line-height: 1em;
    background: #7879b9;
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 0 #6869a1;
}

.splash .center button:active{
    transform: translateY(8px);
    box-shadow: none;
}



@media (min-width: 500px) {
    .splash .center {
        padding-top: 240px;
        background-size: 260px;
    }
    .splash .center h1 {
        margin: 0 0 30px;
        font-size: 1em;
        /* -webkit-text-stroke: 3px #4a5f6c; */
    }
    .splash .center input {
        margin: 0 0 40px;
        font-size: 3em;
        /* -webkit-text-stroke: 1px; */
        /* background: #7879b9; */
    }
    .splash .center button{
        margin-top: 15px;
        font-size: 1.5em;
    }
    .splash .center h5 {
        margin: 100px 0 20px;
        /* font-family: 'Questrial'; */
        font-size: 1em;
        font-weight: normal;
        color: #FFFFFF;
        -webkit-text-stroke: 1px;
    }
}

@media (min-width: 300px) and (min-height:500px) {
    .block{
        display: none;
    }
}