/* 
==================================================
    CSS Reset
==================================================
*/
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* 
==================================================
    Global Styles
==================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Playwrite+ES+Deco:wght@100..400&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
body {
    font-family: var(--primary-font);
    color: #333;
    line-height: 1.6;
    background-color: #f4f4f4;
}


:root {
    --primary-font: "Roboto", sans-serif !important;
    --primary-color: #32B67A !important;

}


h1,
h2,
h3,
h4,
h5,
h6,
small,
p {
    font-family: var(--primary-font) !important;

}

:root {

    --primary-color: #F89820 !important;
    /* Define your primary color here */
}

h1,
h2,
h3,
h4 {
    color: var(--primary-color) !important;
    /* Apply the primary color */
}

     :root {
    --primary-font: "Roboto", sans-serif !important;
   
}


h1, h2, h3, h4, h5, h6, small, p {
    font-family: var(--primary-font) !important;
   
}
:root {
   
    --primary-color: #F89820 !important; /* Define your primary color here */
}
h1, h2, h3,h4 {
    color: var(--primary-color) !important; /* Apply the primary color */

}

a {
    text-decoration: none;
    color: inherit;
}

/* 
==================================================
    Layout
==================================================
*/
/* Header */
header {

    color: grey;

}

header .logo {
    font-size: 2rem;
    margin-left: 1rem;
}

/* Navbar */
/* .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #444;
}

.navbar a {
    color: #fff;
    margin-right: 1rem;
} */

/* Main Content */
main {
    padding: 2rem;
    background-color: #fff;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

/* 
==================================================
    Components
==================================================
*/
/* Buttons */
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: none;
    background-color: #007bff;
    color: #fff;
    text-align: center;
    cursor: pointer;
}

.btn:hover {
    background-color: #0056b3;
}

/* Forms */


form input,
form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 0.6rem !important;
    border: 1px solid #ccc;
}

/* 
==================================================
    Utilities
==================================================
*/
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 1rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

/* 
==================================================
    Media Queries
==================================================
*/
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }
}