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

body {
    font-family: Helvetica, Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    padding: 40px 20px;
    max-width: 800px;
    margin: auto;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 5px;
}

header p {
    font-size: 1.1em;
    color: #777;
}

h2 {
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
    margin-top: 30px;
    font-size: 1.5em;
    color: #222;
}

.item {
    margin-top: 15px;
}

.item h3 {
    font-size: 1.2em;
    color: #444;
}

.item .meta {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 5px;
}

.item p {
    margin-top: 5px;
}

a {
    color: #007acc;
    text-decoration: none;
}

b {
    color: #000000;
    font-weight: normal;
}

a:hover {
    text-decoration: underline;
}

ul {
    margin-left: 20px;
    margin-top: 5px;
}

/* Button styling for links */
.button-link {
    display: inline-block;
    background-color: #007acc;
    color: #fff !important;
    padding: 6px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    margin: 2px 0;
    transition: background-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.button-link i {
    margin-right: 6px;
}
.button-link:hover {
    background-color: #005f99;
    text-decoration: none;
    color: #fff;
}



.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24;
  margin-left: 3px;
  margin-right: 3px;
}

.linkedin-icon {
    vertical-align: text-bottom;
}

.github-icon {
    vertical-align: -6px;
}

.download-icon {
    vertical-align: text-bottom;
}