* {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-image: url("background.jpg");
    flex-direction: column;

    color: white;
}

a {
    text-decoration: none;
    color: gray;
}

.igre_razne {
    background-color: #9ed5f6;
    color: #083159;
    margin: 2px;
}



.igre_razne {
    display: inline-block;
    color: #083159;
    background-color: #9ed5f6;


}

.aktivna {
    border: 5px solid #fcfcfc;
}

.igre_razne:hover {

    color: #9ed5f6;
    background-color: #083159;

}



p {
    margin-bottom: 2%;
    font-size: 1.5em;
}

.game_infos {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.container {
    height: 500px;
    width: 500px;
    border: 1px solid #999;
    cursor: crosshair;
    position: relative;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 01.);
    border-radius: 6px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px dotted white;

}

#target {
    height: 60px;
    width: 120px;
    transition: 0.25s;
    position: absolute;
    animation: animateTarget 10s infinite;
    user-select: none;

}

button {
    padding: 10px 20px;
    margin-bottom: 20px;
    background-color: #e7e7e7;
    border: 1px solid rgb(123, 123, 123);
    color: #242424;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.5em;
}

span {
    font-size: 2em;
}

button:hover {
    background-color: #242424;
    border: 1px solid white;
    color: #e7e7e7;
}

footer {
    text-align: center;
    margin-top: 5%;
}

@keyframes animateTarget {
    to {
        transform: translateY(-200px) rotate(90deg);
    }
}