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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #dadada;
    font-size: 18px; /* Adjust this value to bump up the font size */
}

ul {
    list-style-type: none;
    padding-left: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

main {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 2rem;
}

/* Base styles for typography */
h1, h2, h3 {
    margin-bottom: 1rem;
}

h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
    width: 100%;
    box-sizing: border-box;
}

h3 {
    color: #34495e;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

footer {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background-color: #2c3e50;
    color: #ecf0f1;
    border-radius: 15px;

}

header {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-radius: 15px;

}
