@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;
    outline: none;
    font-family: Poppins, sans-serif;
    scroll-behavior: smooth;
}

:root {
    --black-color: #1e1c1c;
    --white-color: #f7f7f7;
    --orange-color: #ff31313e;
    --yellow-color: #f7be27;
}

.banner {
    /* background-image: linear-gradient(to right, var(--orange1-color), var(--yellow-color)); */
    background-color: var(--orange-color);
    color: #ff3132;
    text-align: center;
    padding: 5rem 1rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;

    #absoluteCircleTop {
        position: absolute;
        top: -2rem;
        left: -2rem;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: #ff31313e;
    }

    #absoluteCircleBottom {
        position: absolute;
        bottom: -2rem;
        right: -2rem;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: #ff31313e;
    }

    h1 {
        font-weight: 800;
        font-size: clamp(1.5rem, -0.875rem + 8.333vw, 2.8rem);
        z-index: 99999;
    }

    p {
        z-index: 99999;
        max-width: 60rem;
        width: 100%;
        display: flex;
        margin: auto;
    }
}