body {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #222;
}

.container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem 3rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

h1, h2, h3 {
    color: #444;
}

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

a:hover {
    text-decoration: underline;
}

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

li {
    margin-bottom: 0rem;
}

.projects-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.projects-table th, .projects-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.projects-table th {
    background-color: #f2f2f2;
}

.projects-table i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.projects-list {
    margin-top: 1rem;
}

.project-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.project-item h3 {
    margin-top: 0;
}

.technologies {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.tech-and-nature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    flex-shrink: 1;
    font-size: small;
}

a.tech-item:hover {
    background-color: #f4f4f4;
    text-decoration: none;
}

.tech-item i {
    font-size: 1rem;
}

.tech-and-nature {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.project-nature {
    text-align: right;
    min-width: fit-content;
    padding: 0.25rem 0.5rem;
}

footer {
    margin-top: 2rem;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

.timeframe-and-employer {
    display: flex;
    justify-content: start;
    margin-top: 0.5rem;
}

.projects-title {
    margin-bottom: 1rem;
}

.technologies-title {
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.technologies-overview {
    margin-bottom: 2rem;
    margin-top: 1.5rem;
    padding: .5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fafafa;
    font-size: small;
}

.technologies-overview .tech-item i {
    font-size: 1rem;
}

.technologies-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.overview-tech {
    flex-shrink: 0;
    background-color: #fff;
    transition: all 0.2s ease;
}

a.overview-tech:hover {
    background-color: #e3f2fd;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.material-symbols-outlined {
    font-size: 15px !important;
    margin-right: -4px;
    margin-top: 1px;
}