        @font-face {
            font-family: 'osmantaha';
            src: url('../fonts/osmantaha.ttf') format('truetype');
            
    }
        

        * {
            font-family: "Vazirmatn", sans-serif;
            font-optical-sizing: auto;
            font-style: normal;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: "Vazirmatn", sans-serif;
            direction: ltr;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            background: #00805f;
            text-align: center;
            height: 100%;
        }


        .body {
            margin: 0;
            padding: 0;
            font-family: "Vazirmatn", sans-serif;
            direction: ltr;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            min-height: 50vh;
            background:  #00805f;
            text-align: center;
            height: 100%;
        }

        .wrapper {
            width: 90%;
        }

        h1 {
            font-weight: 900;
            font-size: 2vw;
            margin-top: 15%;
            margin-bottom: 6vh;
            color: #ffff07;
        }
        h5{
            font-size: 2vw;
            font-weight: 700;
            color: #c4ec79;
        }


        .container {
            display: flex;
            flex-wrap: wrap;
            gap: 2vw;
            justify-content: center;
            font-weight: 700;
            font-size: 2vw;
        }
        .box {
            width: 22%;
            min-width: 180px;
            height: 150px;
            background: #f8ffa0;
            border-radius: 1rem;
            box-shadow: 0 0.3vw 1vw rgba(0, 0, 0, 0.2);
            text-decoration: none;
            color: #b5174a;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: 0.3s;
            font-size: 2vw;
            font-weight: 100;
        }

        .box:hover {
            background-color: #f5ffc8;
            color: #b5174a;
        }

        .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }
        .count{
            color: #1c5254;
        }
        @media (max-width: 768px) {
            body {
                align-items: center;
                height: 100%;
                color: #1c5254;
            }

            h1 {
                font-size: 7vw;
                color: #ffff07 ;
                text-align: center;
                margin-top: 20%;
                margin-bottom: 6vh;
            }
            h5{
                font-size: 4vw;
                color: #c4ec79;
                margin-top: 10%;
                font-weight: 700;
            }

            .container {
                flex-direction: column;
                align-items: center;
                width: 100%;
                font-weight: 700;
                font-size: 5.5vw;
            }

            .box {
                width: 91%;
                height: 125px;
                font-size: 5.5vw;
                margin-bottom: 0.5rem;
                font-weight: 700;
            }

            .box-title {
                font-size: 6vw;
                margin-bottom: 1rem;
            }

            .box-number {
                font-size: 7vw;
            }
            
        }