body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, sans-serif;
    background-color: bisque;
    color: #1a1a1a;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

h1 {
    text-align: center;
}

h2 {
    text-align: center;
    font-weight: bold;
}
a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
}

footer {
    text-align: center;
    position: fixed;
    bottom: 0;
}

a:hover {
    color: #2563eb;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    background-color: rgba(240, 248, 255, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.navbar h1 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
}

.navbar a {
    margin-left: 24px;
    font-size: 1rem;
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.2s;
}

.navbar a:hover::after {
    width: 100%;
}

/* To add: About me, Project entry, Contact form */
.project {
    background-color: #333;
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    color: #e5e5e5;
    text-align: center;
}

.project h3 {
    color: #3b82f6;
    margin-bottom: 10px;
}

.project p {
    line-height: 1.6;
}

.project a {
    color: #e5e5e5;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
}

.project a:hover {
    color: #2563eb;
}
form {
    max-width: 600px;
    width: 100%;
    padding: 40px;
    border-radius: 16px;
    align-self: center;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.col {
    flex: 1;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

textarea.form-control {
    resize: vertical;
    margin-bottom: 20px;
}

.btn-dark {
    width: 100%;
    padding: 14px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-dark:hover {
    background-color: #333333;
}