* { 
    margin: 0;
    padding: 0;
    font-family: 'Bakbak One', cursive;
    touch-action: pan-x pan-y;
}

button {
    text-align: inherit;
    border: none;
    width: auto;
    overflow: visible;
    background: transparent;
    color: inherit;
    font: inherit;
    line-height: normal;
    -webkit-font-smoothing: inherit;
    -moz-osx-font-smoothing: inherit;
}

html {
    height: 90vh;
    background-color:#2C74B3 ;
    justify-content: center;
}

#bg-header {
    background-color: #0A2647;
    -webkit-box-shadow: -1px 5px 24px -9px rgba(0,0,0,0.7);
    -moz-box-shadow: -1px 5px 24px -9px rgba(0,0,0,0.7);
    box-shadow: -1px 5px 24px -9px rgba(0,0,0,0.7);
}

#header {
    display: flex;
    justify-content: center;
    height: 120px;
    width: 100%;
    background-color: #0A2647;
}

#title {
    align-self: center;
    justify-self: center;
    color: #59C1BD;
    font-size: 45px;
    cursor: pointer;
    user-select: none;
    transition: 0.4s;
}

#title:hover {
    color: aliceblue;
}

.container {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 80vh;

}

.content {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
    width: 1200px;
}


#count {
    font-size: 130px;
    transition: 0.3s;
    user-select: none;
}



.btn {
  user-select: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
  width: 300px;
  height: 100px;
  font-size: 40px;
  border-radius: 5px;
  background-color: aliceblue;
  transition: 0.3s;
  cursor: pointer;
  border-width: 2.5px;
  border-style: solid;
  border-color: black;
  text-align: center;
}

.btn:hover {
    background-color: #59C1BD;
}
.btn:active {
    background-color: #2C74B3;
}

.button-area {
    display: flex;
    -webkit-box-shadow: -1px 1px 20px -3px rgba(0,0,0,0.7);
    -moz-box-shadow: -1px 1px 20px -3px rgba(0,0,0,0.7);
    box-shadow: -1px 1px 20px -3px rgba(0,0,0,0.7);
}

.btn-sides {
    width: 60px;
}

.right {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.left {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

@media (max-width:485px){

    #count {
        font-size: 110px;
    }
   
    .btn {
        width: 190px;
        font-size: 30px;
    }
    
    .btn-sides {
        width: 50px;
    }
     
}

@media (max-width:330px){

    #title {
        font-size: 35px;
    }

    #count {
        font-size: 105px;
    }
   
    .btn {
        width: 160px;
        font-size: 30px;
    }
    
    .btn-sides {
        width: 50px;
    }


}

@media (max-width:280px){

    #title {
        font-size: 30px;
    }

    #count {
        font-size: 100px;
    }
   
    .btn {
        width: 80px;
        font-size: 30px;
    }

    #increment {
        font-size: 15px;
    }
    
    .btn-sides {
        width: 50px;
    }
     
}