    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&family=Paytone+One&family=Rubik:wght@300;500;700&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
     :root {
        --gray-light: #1b1d23;
        --gray-dark: #131519;
        --gray-darkest: #0d0f11;
        --brand-coal: #0f0d0e;
        --brand-charcoal: #231f20;
        --brand-charcoal-muted: #1b1918;
        --brand-gray: #262522;
        --brand-yellow: #fcba28;
        --brand-pink: #f38ba3;
        --brand-green: #0ba95b;
        --brand-purple: #7b5ea7;
        --brand-beige: #f9f4da;
        --brand-blue: #12b5e5;
        --brand-orange: #fc7428;
        --brand-red: #ed203d;
        --brand-white: #fff;
        --red: var(--brand-red);
        --white: var(--brand-beige);
        --purple: var(--brand-purple);
        --black: var(--brand-coal);
        --blue: var(--brand-blue);
        --pink: var(--brand-pink);
        --gold: var(--brand-yellow);
        --aqua: var(-- brand-blue);
        --gray: var(--brand-gray);
        --yellow: var(--brand-yellow);
        --green: var(--brand-green);
        --orange: var(--brand-orange);
        --charcoal: var(--brand-charcoal);
        --coal: var(--brand-coal);
    }
    
    .col-red {
        color: var(--brand-red);
    }
    
    .col-blue {
        color: var(--brand-blue);
    }
    
    .col-yellow {
        color: var(--brand-yellow);
    }
    
    .col-orange {
        color: var(--brand-orange);
    }
    
    .col-green {
        color: var(--brand-green);
    }
    
    .col-pink {
        color: var(--brand-pink);
    }
    
    .card-red {
        background-color: var(--brand-red);
    }
    
    .card-blue {
        background-color: var(--brand-blue);
    }
    
    .card-yellow {
        background-color: var(--brand-yellow);
    }
    
    .card-orange {
        background-color: var(--brand-orange);
    }
    
    .card-green {
        background-color: var(--brand-green);
    }
    
    .card-pink {
        background-color: var(--brand-pink);
    }
    
    html {
        font-family: Outfit, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        min-height: 100%;
    }
    
    body {
        background: var(--brand-coal);
        margin: 0;
        padding: 0;
        list-style: none;
    }
    /* Style the header */
    
    header {
        color: #fff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 30px 30px;
    }
    
    a {
        text-decoration: none;
        color: var(--gray-darkest);
    }
    /* Style the logo */
    
    .logo a {
        text-decoration: none;
        font-family: Paytone One, sans-serif;
        text-align: center;
        color: #fcba28;
        font-size: 1.9rem;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }
    
    .logo a span {
        color: #12b5e5;
    }
    /* Style the navigation menu */
    
    nav ul {
        display: flex;
    }
    
    nav ul li {
        list-style: none;
        margin-right: 30px;
    }
    
    nav ul li a {
        text-decoration: none;
        color: #fff;
        font-size: 1.1rem;
        font-weight: 500;
        transition: color 0.3s;
        font-family: Paytone One, sans-serif;
        border: 2px solid var(--brand-red);
        padding: 5px 14px;
        border-radius: 0.7rem;
    }
    
    nav ul li a:hover {
        color: #fcba28;
        /* Change color on hover */
    }
    /* Top Content */
    
    main {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .top-cont {
        display: flex;
        align-items: center;
        width: 500px;
        /* border: 1px solid beige; */
        padding: 1rem;
        flex-direction: column;
        gap: 2rem;
    }
    
    .top-cont h3 {
        margin: 1rem 0 0 0;
        font-size: 2.5rem;
        font-weight: 900;
        font-family: Paytone One, sans-serif;
        color: var(--brand-beige);
        text-align: center;
        text-transform: capitalize;
        letter-spacing: 1px;
    }
    
    .top-cont h6 {
        margin: -1rem 0 0 0;
        font-size: 1.5rem;
        font-weight: 900;
        font-family: Paytone One, sans-serif;
        color: var(--brand-yellow);
        text-align: center;
        text-transform: capitalize;
        letter-spacing: 1px;
    }
    /* Blog List */
    
    .main-blog {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .blog-list {
        width: 930px;
        height: auto;
        padding: 0rem;
        margin: 1rem;
        /* border: 1px solid beige; */
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .blog-card {
        margin: 1rem;
        padding: 4px 40px;
        border-radius: 15px;
    }
    
    .blog-list .blog-card h3 a {
        font-size: 1rem;
        font-weight: 500;
        font-family: Inter, sans-serif;
        color: var(--brand-beige);
        text-align: start;
        text-transform: capitalize;
        letter-spacing: 1px;
        margin: 15px;
    }
    
    .blog-tag {
        background-color: #fcba28;
        padding: 4px 10px;
        border: 1px solid;
        width: 4rem;
        margin: 1px 0 -1rem -25px;
        border-radius: 1rem;
        font-size: 0.7rem;
        font-weight: 400;
        font-family: Paytone One, sans-serif;
        color: var(--brand-gray);
        text-align: center;
        position: relative;
    }
    /*     
    .blog-container {
        display: flex;
        justify-content: space-around;
        width: 900px;
        height: auto;
        border: 1px solid beige;
        flex-direction: row;
        align-items: center;
    }
    
    .blog-container .blog-card {
        border: 1px solid beige;
        height: 250px;
        width: 250px;
        margin: 1rem;
        padding: 0rem;
        background-image: url('../img/2.png');
        background-size: cover;
    }
    
    .blog-tag {
        background-color: #fcba28;
        border: 1px solid;
        padding: 3px 7px;
        width: 4rem;
        margin: 1rem;
        border-radius: 1rem;
        font-size: 0.9rem;
        font-weight: 400;
        font-family: Paytone One, sans-serif;
        color: var(--brand-gray);
        text-align: center;
    }
    
    .blog-title {
        font-size: 1.5rem;
        font-weight: 500;
        font-family: Inter, sans-serif;
        color: var(--brand-beige);
        text-align: start;
        text-transform: capitalize;
        letter-spacing: 1px;
        position: relative;
        top: 7rem;
        right: -1rem;
    }
    
    .blog-info {
        display: inline-flex;
        gap: 1rem;
        position: absolute;
        margin: 8rem 0px 0 20px
    }
    
    */
    /* footer */
    
    footer {
        display: flex;
        flex-direction: column;
        font-family: Paytone One, sans-serif;
        position: relative;
        margin-top: 8rem;
    }
    
    .footer {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 65px 8vw;
        color: #e2e0e5;
        background: radial-gradient(4px 4px at 50% 50%, var(--brand-coal) 50%, transparent 50%) top / 40px 40px repeat, radial-gradient(8px 8px at 50% 50%, rgba(255, 255, 255, .1) 50%, transparent 50%) top / 40px 40px repeat;
    }
    
    .footer .h5 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 12px;
        letter-spacing: 1px;
    }
    
    .footer .brand .h5 {
        display: flex;
        text-transform: uppercase;
        gap: 6px;
    }
    
    .footer>div {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .footer .brand {
        max-width: 200px;
        gap: 24px;
        line-height: 1.5;
    }
    
    .newsletter {
        position: relative;
    }
    
    .newsletter input {
        font-size: 16px;
        font-weight: 400;
        height: 53px;
        padding: 6px 6px 6px 16px;
        background: transparent;
        border: 1px solid #e2e0e5;
        color: #e2e0e5;
        outline: none;
        border-radius: 14px;
        font-size: 16px;
        width: 370px;
    }
    
    .newsletter button {
        position: absolute;
        padding: 16px 40px;
        height: 53px;
        border-radius: 10px;
        border: none;
        background-color: var(--brand-yellow);
        font-size: 18px;
        font-weight: 500;
        color: var(--brand-purple);
        right: 6px;
        top: 6px;
        transition: all 0.5s;
        font-family: Paytone One, sans-serif;
        justify-content: center;
        text-align: center;
    }
    
    .newsletter button:hover {
        cursor: pointer;
        background-color: transparent;
        border: 2px solid var(--brand-yellow);
        padding: 16px 40px;
    }
    
    .about .h5 {
        font-family: Paytone One, sans-serif;
        text-align: center;
        color: #fcba28;
    }
    
    .about a {
        color: #f9f4da;
    }
    
    .subjects .h5 {
        font-family: Paytone One, sans-serif;
        text-align: center;
        color: #fcba28;
    }
    
    .subjects a {
        text-transform: capitalize;
        color: #f9f4da;
    }
    
    .product a {
        color: #f9f4da;
    }
    
    .social {
        display: flex;
        flex-direction: row;
        gap: 16px;
    }
    
    .social .social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: rgba(255, 255, 255, 0.21);
        border-radius: 20% 20% 20% 20%;
    }
    
    .social a {
        transition: all 0.3s ease;
    }
    
    .social a:hover {
        transform: scale(1.1);
    }
    
    .copyright {
        display: flex;
        justify-content: center;
        gap: 10px;
        padding: 18px 8vw;
        background-color: var(--brand-yellow);
    }
    
    .copyright a {
        color: #f9f4da;
        margin: 0 1vw 0 1vw;
    }
    
    .copyright p {
        font-size: 14px;
        font-weight: 100;
    }
    
    p,
    a {
        font-size: 16px;
        font-weight: 400;
    }
    
    footer a {
        position: relative;
    }
    
    footer a:not(.social-icon)::before {
        background-color: #e2e0e5;
        content: '';
        position: absolute;
        width: 100%;
        height: 1px;
        border-radius: 4px;
        bottom: 0;
        left: 0;
        transform-origin: right;
        transform: scaleX(0);
        transition: transform 0.3s ease-in-out;
    }
    
    footer a:hover::before {
        transform-origin: left;
        transform: scaleX(1);
    }
    
    @media (max-width: 960px) {
        .footer {
            gap: 72px;
            display: grid;
            margin-top: 5rem;
            grid-template-rows: 3fr;
        }
        .footer .brand {
            max-width: 400px !important;
            gap: 0rem;
        }
        .subscribe {
            display: block;
            grid-column-start: 1;
            grid-column-end: 3;
        }
        .subscribe .newsletter {
            width: 100%;
            max-width: 370px;
        }
        .subscribe .newsletter input {
            width: calc(100% - 22px);
        }
        .copyright {
            padding: 32px 5vw;
        }
        .copyright p,
        .copyright a {
            font-size: 14px;
        }
        .footer {
            padding: 72px 8vw;
        }
    }
    
    @media screen and (max-width:768px) {
        .footer {
            gap: 72px;
            display: grid;
            margin-top: 5rem;
            grid-template-rows: 3fr;
            width: 700px;
        }
        .copyright {
            width: 750px;
        }
    }
    
    @media (max-width: 425px) {
        p,
        a {
            font-size: 0.7rem;
        }
        .footer .h5 {
            font-size: 16px;
        }
        .footer {
            gap: 16px;
            display: grid;
            margin-top: 3rem;
            grid-template-rows: 3fr;
            width: auto;
            justify-items: stretch;
            align-items: start;
        }
        .newsletter input {
            font-size: 0.8rem;
            height: 35px;
            padding: 6px 6px 6px 16px;
            border-radius: 14px;
            width: 370px;
        }
        .newsletter button {
            display: flex;
            height: 35px;
            font-size: 1rem;
            right: 6px;
            top: 6px;
            position: absolute;
            text-align: center;
            justify-content: center;
            align-items: center;
        }
        .copyright {
            padding: 10px 8vw;
        }
        .copyright p,
        .copyright a {
            font-size: 8px;
        }
        .copyright {
            width: auto;
        }
    }