body {
    background:url("bgmain.png");
    font-family: 'Krub', sans-serif; background-size: cover;
}

.wrapper {
    height: 650px;
    width: 400px;
    background: #282C38;
    padding: 2% 1%;
    box-sizing: border-box;
    text-align: center;
    border-radius: 5px;
    box-shadow: 10px 20px 40px 0px rgba(15,15, 15, 0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-200px, -325px);
}

.wrapper h1 {
    font-size: 26px;
    color: #ededed;
}

.ball {
    color: #00f3ff;
    font-size: 72px;
    margin-top: 1rem;
    -webkit-animation: rotation 2s infinite linear;
}

@-webkit-keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.wrapper h2 {
    font-size: 18px;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: normal;
    color: #d1d1d1;
}

.wrapper input[type=number] {
    background: #37394E;
    border: none;
    width: 100%;
    height: 35px;
    padding: 0 10px;
    border-radius: 3px;
    display: inline-block;
    color: #efefef;
    font-size: 14px;
}

.col-8 {
    padding-right: 0 !important;
}

.wrapper input[type=number]:focus {
    outline: #00f3ff auto 5px;
}

.wrapper input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}

#submit {
    background: #00f3ff;
    border: none;
    width: 100%;
    height: 35px;
    border-radius: 3px;
    display: inline-block;
    margin: 0 auto;
    color: #282C38;
    font-size: 14px;
}

.row {
    margin: 30px 0;
}

.card {
    background: #37394E;
    height: 100px;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.card p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #00ffd0 !important;
}

.card h4 {
    font-size: 18px;
    text-align: left;
}

.guess-block {
    display: none;
}

#guesses {
    padding: 10px;
    border-radius: 2px;
    background: #454757;
    color: #efefef;
}

#remain {
    font-size: 22px;
    font-weight: 600;
}

#reset {
    display: none;
    margin: 10px auto;
    background: #FFB72D;
    border: none;
    width: 100%;
    height: 35px;
    border-radius: 3px;
    margin: 0 auto;
    color: #282C38;
    font-size: 14px;
}

#userGuess {
    display: none;
}
