@import url('https://fonts.cdnfonts.com/css/poppins');

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body{
   background: #EEAECA;
background: radial-gradient(circle, rgba(238, 174, 202, 1) 12%, rgba(203, 179, 214, 1) 75%, rgba(148, 187, 233, 1) 92%);
    font-family: 'Poppins', sans-serif;
    height: 100vh;
}
.counter_container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 250px auto;
    justify-content: space-between;
    width: 450px;
    /* background-color: chartreuse; */
    background: #833AB4;
background: linear-gradient(90deg, rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
    border-radius: 20px;
    padding: 20px 30px;
    box-shadow: 20px 10px 100px orangered;
}
.btn{
    font-size: 100px;
    background: none;
    border: none;
    font-weight: bold;
    cursor: pointer;
}
.counter_data{
    font-size: 100px;
    color: black;
    font-weight: bold;

}


