@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    font-family: 'Poppins', sans-serif;
    margin: 200px;
    background-color: rgb(255,201,243);
    overflow: hidden;
}

h2{
    margin-bottom: 30px;
    text-decoration: underline;
}

.container-card{
    background-color: #fff;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin:0 auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.counter-display{
    font-size: 72px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.button-container {
    margin-bottom: 10px 20px;
}

button{
    padding: 10px 20px;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 10px;
    width: 80px;
    color: #fff;
}

#resetBtn{
    background-color: #c82333;
    margin-top: 10px;
    margin-bottom: 20px;
}

#resetBtn:hover{
    background-color: #b11c2b;
}

.blue{
    font-size: 24px;
}

.blue-btn:hover{
    background-color: #222bff;
}




