/**
 * Copyright spezifisch <spezifisch+git@gmail.com>
 * SPDX-License-Identifier: GPL-3.0-only
 */

/* Reset some basic elements */
body, h1, p, ul {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
}

/* Container to center the content */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Header styling */
header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2.5em;
    color: #2c3e50;
}

/* Project list styling */
.project-list {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.6;
}

.project-item {
    position: relative;
    margin-left: 2em;
    padding-left: 2em; /* Adjust padding for the bullet */
    margin-bottom: 1em;  /* Add space between items */
}

.project-item::before {
    content: '🎻'; /* Fiddle emoji */
    position: absolute;
    left: 0;
    top: 0.2em; /* Adjust top based on font size */
    font-size: 1.2em; /* Scale bullet to match title size */
    line-height: 1; /* Ensure bullet is vertically aligned */
}

/* Footer styling */
footer {
    background: #fafafa;
    text-align: left;
    margin: 2em 0 0;
    padding: 0.5em;
    font-size: 0.8em;
    color: #888;
    line-height: 1.4em;
}
