body {
    margin: 0;
    font-family: "Georgia", serif;
    background: #fff8ed;
    color: #164b36;
}


/* Halbmond */

.logo {
    font-size: 80px;
    margin-bottom: 10px;
    color: #c9a227;
    text-shadow: 0 5px 15px rgba(201,162,39,0.4);
}


/* Name */

.app-name {
    font-size: 42px;
    font-weight: bold;
    color: #167346;
    letter-spacing: 2px;
}


.subtitle {
    color: #b08b20;
    font-size: 18px;
}



/* Menü */

.menu-button {
    position: fixed;
    top: 20px;
    left: 20px;
    font-size: 38px;
    color: #167346;
    cursor: pointer;
    z-index: 10;
}


.menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 240px;
    height: 100%;
    background: white;
    padding: 30px;
    box-shadow: 5px 0 25px #d8c49a;
    transition: 0.3s;
    z-index: 9;
}


.menu.open {
    left: 0;
}


.menu button {
    width: 200px;
    padding: 15px;
    margin: 10px;
    border: none;
    border-radius: 25px;
    background: #167346;
    color: white;
    font-size: 18px;
}



/* Karte */

.container {
    max-width: 400px;
    margin: 70px auto;
    background: white;
    padding: 35px;
    border-radius: 35px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(201,162,39,0.25);
}



/* Zähler */

#counter {
    font-size: 100px;
    font-weight: bold;
    color: #167346;
    margin: 35px;
}



/* Dhikr Auswahl */

.dhikr-box {
    margin-top: 20px;
    padding: 20px;
    background: #fff8ed;
    border-radius: 25px;
}


select {
    width: 100%;
    padding: 15px;
    border-radius: 20px;
    border: 2px solid #c9a227;
    font-size: 18px;
    color: #164b36;
}



/* Touch Zählen */

.touch-pad {

    width: 280px;
    height: 280px;

    margin: 30px auto;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #167346,
        #2ca66b
    );

    color: white;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;

    user-select: none;

    transition: 0.15s;

    box-shadow:
    0 15px 35px rgba(22,115,70,0.35);
}


.touch-pad:hover {
    transform: scale(1.03);
}


.touch-pad:active {
    transform: scale(0.94);
}


.touch-pad span {
    font-size: 34px;
    font-weight: bold;
    letter-spacing: 2px;
}



/* Reset */

.reset {

    background: #c9a227;

    color: white;

    border: none;

    padding: 12px 30px;

    border-radius: 25px;

    margin-top: 20px;

    font-size: 16px;

}



/* Statistik */

.stats {
    font-size: 22px;
    line-height: 2;
}


#statsPage {
    display: none;
}



/* Handy */

@media(max-width:600px){

    .container {
        margin: 70px 20px;
        padding: 25px;
    }


    .logo {
        font-size: 65px;
    }


    .app-name {
        font-size: 35px;
    }


    #counter {
        font-size: 75px;
    }


    .touch-pad {
        width: 230px;
        height: 230px;
    }


    .touch-pad span {
        font-size: 28px;
    }

}