
@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');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      background-image: url('../assets/bg.webp');
      background-position: center;
      background-size: cover;
      font-family: Arial, sans-serif;
      font-family: "Poppins", sans-serif;
    }

    h1 {
        color: white;
        text-shadow: 1px 1px 8px rgb(22, 22, 22);
        text-transform: uppercase;
    }

    main.container {
      text-align: center;
      backdrop-filter: blur(10px);
      border: 2px solid rgba(255,255,255,0.2);
      border-radius: 10px;
      padding: 40px;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    #valor {
      font-size: 5rem;
      margin: 20px 0;
      font-weight: 700;
      /* transition: color 0.3s; */
    }

    button {
      padding: 10px 20px;
      margin: 5px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 1rem;
      transition: 0.3s;
    }

    button:hover {
        opacity: 0.7;
    }

    #decremento {
      background: #ff1111;
      color: white;
      box-shadow: 1px 1px 5px black;
      text-shadow: 0px 0px 2px black;
    }

    #incremento {
      background: #15ff1f;
      color: white;
      box-shadow: 1px 1px 5px black;
      text-shadow: 2px 2px 6px black;
    }

    #resetar {
      background: blue;
      color: white;
      box-shadow: 1px 1px 5px black;
      text-shadow: 0px 0px 2px black;
    }

    

