
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


:root {

    --white: #fff;
    --black:#1c2b2d;
    --blue: #31326f;
    --light-blue: #005490;
    --color-primary: #db6400;
    --color-sec: #db6400;
    --grey: #eee;
    --dark-grey: #222831;
}
{
    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: 100%;
}
img {
    width: 100%;
}
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.counter-div {
    width: 40rem;
    border: 1px solid var(--grey);
    padding: 1rem;
    background-color: var(--light-blue);
    color: var(--white);
    text-align: center;
    border-radius: 5px;
}
.counter-div > * {
    margin-bottom: 2rem;
}
.count {
    font-size: 4rem;
}
.buttons button {
    padding: 1rem;
    margin: 0 1rem;

    font-size: 1.5rem;
    color: var(--white); 
    font-weight: 700;
    border: none;
    outline: none; 
    border-radius: 3px;
    cursor: pointer;
}
button.subtract  {
    background-color: orangered;
    color: white;

}
button.reset  {
    background-color: var(--white);
    color: black;
}
button.add  {
    background-color: green;
    color: white;

}