body {
    font-family: "Roboto", sans-serif;
    background: #0d1117;
    color: #e6edf3;
    line-height: 1.6;
    margin: 0;
}

a {
    color: #58a6ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

header {
    background: #161b22;
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

header h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.5rem;
    color: #8b949e;
}

section {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.2rem;
    text-align: center;
    border-bottom: 2px solid #5866ff;
    display: flex;
    justify-content: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.card {
    background: #161b22;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin-bottom: 0.5rem;
}

.card ul {
    margin-top: 0.5rem;
    padding-left: 1.2rem;
}

.card li {
    margin-bottom: 0.5rem;
    color: #c9d1d9;
}

.logo {
    max-height: 40px;
    background: white;
    padding: 8px;
    border-radius: 6px;
}

.company-logo {
    background: white;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.project-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .5rem;
}

#footer {
    text-align: center;
    padding: 2rem;
    background: #161b22;
    color: #8b949e;
    margin-top: 3rem;
}