/* ************************************************************
:: Author Name: Mohammed Qadeer
:: Author URI:support@a11ychecks.com
:: Created: 31 Aug 2023
************************************************************ 
/* Reset some default styles */

/* Reset some default browser styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Apply a background color and set text color */
body {
    background-color: #f4f4f4;
    font-family: 'poppins', sans-serif;
    color: #333;
}

/* Style the header */
header {
    background-color: #F2A4F7;
    color: #fff;
    padding: 20px;
    text-align: center;
}

header h1 {
    font-size: 36px;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
}

/* Style the main content */
main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

section {
    margin-bottom: 40px;
}

h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

article {
    border: 1px solid #ccc;
    padding: 10px;
    background-color: #fff;
}

/* Style the aside */
aside {
    background-color: #f4f4f4;
    padding: 20px;
}

/* Style the footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    clear: both;
}

/* Add some spacing between footer content */
footer p {
    margin-top: 10px;
}