        /* width */
        ::-webkit-scrollbar {
            width: 8px;
        }

        /* Track */
        ::-webkit-scrollbar-track {
            background: rgba(175, 201, 240, 0.521);
        }

        /* Handle */
        ::-webkit-scrollbar-thumb {
            background: #2f8549a2;
        }

        /* Handle on hover */
        ::-webkit-scrollbar-thumb:hover {
            background: #DD7510;
        }

        #headg {
            font-size: 14px;
            color: #fffff6;
            background-color: rgba(25, 26, 88, 0.562);
            text-align: center;
            padding: 2px 4px 2px 4px;
            border: solid rgba(3, 53, 24, 0.28) 1px;
            border-radius: 2px;
        }

        #mssg {
            font-size: 12px;
            color: #150364;
            height: 25px;
        }

        #timerDisplay {
            font-size: 24px;
            font-weight: bold;
        }

        input[type="text"],
        textarea {
            width: 95px;
            background-color: rgba(212, 235, 175, 0.199);
            color: #003518;
        }

        input::placeholder {
            color: #003518;
            font-size: 13px;
            font-weight: bold;
            opacity: 0.5;
        }

        body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #f0f0f0;
        }

        .container {
            width: 250px;
            height: 324px;
            background: url(https://www.mycalcsneditors.com/timer/images/600x600_Time_trsp.webp);
            background-size: 90% 70%;
            /* background-size: cover; */
            background-repeat: no-repeat;
            background-position: 10px 40px;
            opacity: 0.98;
            text-align: center;
            background-color: #fff;
            padding: 20px;
            padding: 8px;
            border: 1px solid #080a79;
            border-radius: 7px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        h1 {
            margin-bottom: 20px;
            font-size: 26px;
            color: #080a79;
        }

        .timer-display {
            font-size: 48px;
            margin: 20px 0;
            color: #662d23;
        }

        #input-minutes {
            color: #080a79;
            background: url(https://www.mycalcsneditors.com/timer/images/minutes_bgr.webp);
            background-size: 80% 80%;
            background-repeat: no-repeat;
            background-position: 35px 1px;
            margin-bottom: 5px;
            border-radius: 5px;
            border: 2px solid #080a79;
        }

        #input-seconds {
            color: #080a79;
            background: url(https://www.mycalcsneditors.com/timer/images/seconds_bgr.webp);
            background-size: 80% 80%;
            background-repeat: no-repeat;
            background-position: 35px 1px;
            margin-bottom: 15px;
            border-radius: 5px;
            border: 2px solid #080a79;
        }

        #start-button {
            padding: 10px 20px;
            font-size: 16px;
            color: #fff;
            background-color: #1350c2;
            border: 1px solid #080a79;
            border-radius: 25px;
            cursor: pointer;
        }

        #start-button:hover {
            background-color: #110336;
        }

        #reset-button {
            padding: 4px 6px;
            margin: 10px 20px;
            font-size: 10px;
            color: #fff;
            background-color: #696666;
            border: 1px solid #080a79;
            border-radius: 15px;
            cursor: pointer;

        }

        @media screen and (max-width: 500px) {

            #input-minutes {
                width: 100px;
                background-size: 80% 80%;
                background-position: 17px 1px;
            }

            #input-seconds {
                width: 100px;
                background-size: 80% 80%;
                background-position: 17px 1px;
            }

        }