/*
Theme Name: BWBG Theme
Author: BWBG Team
Version: 1.0
*/

/* Import Cairo font */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700;900&display=swap');

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base styles */
body {
    font-family: 'Cairo', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 29px;
    color: rgb(119, 119, 119);
}

/* Paragraphs */
p {
    font-weight: 400;
    margin-bottom: 1.5em;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 0.75em;
    color: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Content */


/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
}