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

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}


header {
    background-color: #1d538d;
    color: #ffffff;
    text-align: center;
    padding: 40px 20px;
}

header h1 {
    font-size: 2rem;
    margin-bottom: 6px;
}

header .subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 10px;
}

header .header-link a {
    color: #cce0ff;
    text-decoration: none;
    font-size: 0.95rem;
}

header .header-link a:hover {
    text-decoration: underline;
}


.section {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 20px;
}

.section h2 {
    color: #1d538d;
    font-size: 1.4rem;
    border-bottom: 2px solid #1d538d;
    padding-bottom: 6px;
    margin-bottom: 18px;
}


table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

th,
td {
    border: 1px solid #c0c0c0;
    padding: 10px 14px;
    text-align: left;
}

th {
    background-color: #1d538d;
    color: #ffffff;
    font-weight: 600;
}


.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}

.project-card {
    border: 1px solid #c0c0c0;
    border-radius: 6px;
    padding: 18px;
    background-color: #fafbfd;
    transition: box-shadow 0.2s ease;
}

.project-card:hover {
    box-shadow: 0 2px 10px rgba(29, 83, 141, 0.15);
}

.project-card h3 {
    color: #1d538d;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.project-card p {
    font-size: 0.93rem;
    color: #555555;
}


.skills-block {
    margin-bottom: 14px;
}

.skills-block h3 {
    color: #1d538d;
    font-size: 1rem;
    margin-bottom: 4px;
}

.skills-block p {
    font-size: 0.95rem;
    color: #444444;
}


footer {
    background-color: #1d538d;
    color: #ffffff;
    text-align: center;
    padding: 24px 20px;
    margin-top: 40px;
}

footer a {
    color: #cce0ff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.git{
    display: block;
}

.card-link{
    text-decoration: none;
}