body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #E0E0E0;
    margin: 0;
    padding: 0;
    font-size: 18px;
    /* Increase overall text size */
}

.content-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background-color: #1E1E1E;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 32px;
    text-align: center;
    /* Increase heading size */
}

h2 {
    font-size: 28px;
    /* Increase subheading size */
}

p,
ul,
ol {
    font-size: 20px;
    /* Increase paragraph and list text */
    padding-left: 20px;
}

.tech-stack {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #1E1E1E;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
}

.tech-stack th,
.tech-stack td {
    padding: 14px;
    /* Increase padding for better readability */
    border: 1px solid #444;
    text-align: left;
    font-size: 20px;
}

.tech-stack th {
    background-color: #BB86FC;
    color: #121212;
    font-weight: bold;
    text-align: center;
    font-size: 22px;
}

.tech-stack td {
    background-color: #2A2A2A;
}