        @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Poppins", sans-serif;
        }

        .Head {
            background-color: black;
        }

        h1 {
            font-size: 42px;
            font-weight: 800;
            color: #000;
        }

        p {
            color: #777;
            font-size: 17px;
            font-weight: 300;
            line-height: 22px;
            padding: 10px;
        }

        h3 {
            color: #012a9c;
            padding-left: 10px;
        }

        .Banner {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 50px;
        }

        .banner-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            padding: 20px;
            width: 50%;
        }

        .banner-content h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
        }
