*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html,body{
    height: 100%;
    width: 100%;
    color: white;
}

body{
    padding: 50px;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
}

header
{
    font-size: 50px;
}

#main{
    padding: 50px;
    background-color: rgb(55, 9, 70);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    border-radius: 30px;
}

#inc{
    background-color: rgb(1, 69, 36);
    color: white;
}

#dec{
    background-color: red;
    color: white;
}

button{
    padding: 10px 40px;
    border-radius: 40px;
    box-shadow: none;
    border: none;
}

#inc:hover{
    cursor: pointer;
    color: rgb(255, 255, 255);
    background-color: rgb(0, 31, 0);
}

#dec:hover{
    cursor: pointer;
    color: rgb(255, 255, 255);
    background-color: rgb(31, 0, 0);
}

#reset:hover{
    cursor: pointer;
    color: rgb(255, 255, 255);
    background-color: rgb(56, 56, 56);
}