/* general */

* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: 100;
    line-height: 1.5;
    text-align: center;
}

.container {
    min-width: 900px;
    max-width: 100%;
    height: 100%;
}

/* typography */

h1 {
    padding: 30px 0;
    font-size: 40px;
}

h2 {
    font-size: 25px;
    letter-spacing: 1em;
    position: relative;
    z-index: 10;
    padding: 90px 15px 0 15px;
}

h3 {
    font-size: 12px;
    letter-spacing: 0.5em;
}

/* game */

img.first-load {
    width: 100px;
    margin: 0 auto;
    display: block;
}

.btn-red {
    width: 150px;
    height: 150px;
    background-image: url(assets/butten-unpressed.png);
    background-size: 150px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -75px;
    margin-left: -75px;
    cursor: pointer;
}

.btn-red:active {
    background-image: url(assets/butten-pressed.png)
}

.btn-green {
    width: 150px;
    height: 150px;
    background-image: url(assets/buttenG-unpressed.png);
    background-size: 150px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -75px;
    margin-left: -75px;
    cursor: pointer;
}

.btn-green:active {
    background-image: url(assets/buttenG-pressed.png)
}

.new-game-statment {
    font-size: 14px;
    position: fixed;
    bottom: 15%;
    left: 20%;
    right: 20%;
    display: none;
}

.game-over-screen {
    background-color: rgb(167, 167, 255);
    border: 1px solid black;
    border-radius: 5px;
    position: fixed;
    padding: 10%;
    top:1%;
    bottom: 1%;
    left: 1%;
    right: 1%;
    z-index: 20;
    display: none;
}

.count {
    border: 0.5px solid darkgrey;
    background-color: rgb(167, 167, 255);
    border-radius: 5px;
    padding: 5px 15px;
    margin: 5px;
    position: fixed;
    bottom: 0;
    right: 0;
}

.timer {
    position: fixed;
    top: 0;
    right: 0;
    padding: 5px 15px;
    margin: 5px;
}

.top-score {
    position: fixed;
    top: 0;
    left: 0;
    padding: 5px 15px;
    margin: 5px;
}

.logo {
    height: 50px;
    position: fixed;
    bottom: 0;
    left: 0;
    margin: 0 10px;
}

@media (max-width:900px) {

    .btn-red {
        width: 80px;
        height: 80px;
        background-size: 80px;
        margin-top: -40px;
        margin-left: -40px;
    }

    .btn-green {
        width: 80px;
        height: 80px;
        background-size: 80px;
        margin-top: -40px;
        margin-left: -40px;
    }

    .container {
        min-width: 100%;
    }

    h2 {
        font-size: 20px;
        letter-spacing: 0.5em;
    }
}