@import url("https://fonts.googleapis.com/css?family=Source+Code+Pro&display=swap");

*, *::before, *::after {
    box-sizing: border-box;
    user-select: none;
    font-family: 'Source Code Pro';
}


body {
    background-color: #121212;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}    

.header {
    position: absolute;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    top: 0;
    min-height: 100px;
    width: 100%;
    /* background-color: red; */
    z-index: 999;
}

.logo {
    position: absolute;
    top: 3vmin;
    left: 3vmin;
    width: 150px;
    height: auto;
}

.score {
    position: absolute;
    font-size: 4vmin;
    font-weight: bold;
    bottom: 3vmin;
    right: 3vmin;
    color: #44ffc4;
}

.world {
    position: relative;
    overflow: hidden;
    max-height: 500px;
    /* background-image: url('img/pozadina.png'); */
    /* width: 100%;
    height: 200px; */
}

.background {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
}
/* 
@media screen and (max-width: 500px) {
    .world {
        height: 250px !important;
        width: auto;
    }

    .background {
        height: 250px !important;
        width: auto;
    }
}

@media screen and (min-width: 500px) and (max-width: 920px) {
    .world {
        height: 370px !important;
        width: auto;
    }

    .background {
        height: 370px !important;
        width: auto;
    }
} */

.ground {
    --left: 0;
    position: absolute;
    width: 300%;
    bottom: -1%;
    left: calc(var(--left) * 1%);
}

.vuk {
    --bottom: 0;
    position: absolute;
    left: 1%;
    height: 30%;
    bottom: calc(var(--bottom) * 1%);

    /* border: solid 2px white; */
}

.stone {
    position: absolute;
    left: calc(var(--left) * 1%);
    height: 24%;
    bottom: 2%;
    
    /* border: solid 2px white; */
}

.container {
    /* position: absolute; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #33bca5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #121212bb;
    width: 400px;
    height: 400px;

    position: absolute;
    z-index: 999;
}

.btn {
    margin: 10px;
    background-color: #33bca5;
    color: #121212;
    font-size: 18px;
    border: solid 2px #33bca5;
    border-radius: 0px;
    width: 150px;
    height: 50px;
    transition: 0.7s ease;
}

.btn:hover {
    background-color: #121212E3;
    color: #33bca5;
}

.saznajvise {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* margin-bottom: 100px; */
    /* margin: 10px 50px; */
}

.vise {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /* margin: 10px 50px; */
}

.btn-small {
    background-color: #121212;
    color: #33bca5;
    width: 100px;
    height: 35px;
    font-size: 14px;
    margin: 0 10px;
    border: solid 2px #33bca5;
    border-radius: 0px;
    transition: 0.7s ease-in-out;
}

.btn-small:hover {
    background-color: #33bca5;
    color: #121212;
}

.fusnota {
    margin-bottom: 0;
    padding: 0px 20px 0 20px;
    font-size: 12px;
    text-align: center;
    color: #33bca5;
}

.tekst {
    padding: 10px;
    font-size: 16px;
    text-align: center;
    color: #33bca5;
}

.btn-login {
    margin-top: 0;
}

.lbl {
    color: white;
    width: 200px;
    margin: 10px;
}

.inpt {
    color: #121212;
    font-size: 15px;
    background-color: white;
    border: solid 2px #33bca5;
    border-radius: 5px;
    width: 200px;
    height: 35px;
}

.inpt:hover {
    border: solid 2px #33bca5;
    background-color: white;
}

.rezultat {
    margin-bottom: 10px;
}





.hide {
    display: none;
}