/* css reset start here */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  font-family: "Open Sans", sans-serif;
}

p {
  font-size: 1.6rem;
  line-height: 1.5;
}

img {
  width: 100%;
}

/* css reset ends here */
/****************************************************************************************/


/* start here */

/* wrapper container class div */
.container{
    background-color:#ddada1;
    max-width: auto;
    padding: 0 20px;
    margin: 0 auto;    
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    height: 100vh;
}

/* wrapper div that contains the content */ 
.counter-div{
    width: 40rem;
    border:1.5px solid white;
    padding:1rem;
    background-color: #0562a0;
   text-align: center;
   border-radius: 20px;
}

/* selecting all the div's inside the counter-div */
.counter-div > div *{
    margin-bottom: 2rem;
}

/* selecting the count div(the one with 0 ) */
.count {
font-size: 4rem;
border: 2px solid;
border-color:white;
display: inline-block;
padding: 2rem 3rem;
border-radius: 50%;
}

/* adding styles to the button */
.btn {
    padding: 5px;
    margin: 1rem 0;
    font-size: 1.5rem;
    font-weight: 400;
    color:white;
    border:none;
    outline: none;
    border-radius: 3px;
    cursor: pointer;
    background: none;
}

/* styling the individual buttons */
.add {
    background-color: green;
}

.subtract {
    background-color: orangered;
}

.reset {
    background-color: white;
    color:black;
}