* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Patrick Hand', cursive;
    text-align: center;
    background: rgb(215, 227, 231);
    margin: 0 auto;
    transition: ease width 0.6s;
    transition: ease height 0.6s;
    color: rgb(71, 71, 71);
}

h1 { 
    font-size: 40px;
    margin-top: 10px;
    margin-bottom: 10px;
    letter-spacing: 0.2em;
    margin-top: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dotted #ccc;
}

h2 {
    font-size: 50px;
    font-family: 'Fuzzy Bubbles', cursive;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 1px dotted #ccc;
}

button {
    font-family: 'Fuzzy Bubbles', cursive;
    font-size: 28px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 20px auto;
    height: 55px;
    width: 200px;
    font-weight: bold;
    color: #555;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-width: 2px 0px 4px 0px;
    border-style: solid;
    border-radius: 5px; 
    box-shadow: 0 2px 5px -1px rgba(1,0,0,.3);
}


@media only screen and (max-width: 900px) {
    .btn {
        flex-flow: column nowrap !important;
    }
    body {
        width: 60vh;
    }

}

@media only screen and (min-width: 900px ) {
    .wrapper {
        min-height: 60vh;
        
    }
    body {
        width: 80vh;
        transition: ease width 0.6s;
    }
}



.btn {
    
    display: flex;
    flex-flow: row wrap;
    width: 50%;
    align-items: center;
    margin: 10px auto;
    justify-content: center;

}

.wrapper {
    margin-top: 20vh;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    height: auto;
    max-height: 100vh;
    flex-wrap: wrap;
    background-color: #f5f5f5 !important;
    border-radius: 10px;
}

button:hover {
    cursor: pointer;
    box-shadow: 0 5px 5px 0px rgba(1,0,0,.3);
    background-color: #f0f0f0;
    -webkit-transition: all 0.2s;
    -moz-transition:    all 0.2s;
    -ms-transition:     all 0.2s;
    -o-transition:      all 0.2s;
    
}

#save-me {
    border-color: #518059;
}

#increment {
    border-color: #b86767;
}

#reset {
    border-color: #535396;
}
