body {
    margin: 60px auto;
    width: 70%;
    background: transparent  url("../harpa_ceiling.jpg") no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
}
nav ul, footer ul {
    font-family:'Helvetica', 'Arial', 'Sans-Serif';
    padding: 0px;
    list-style: none;
    font-weight: bold;
}
nav ul li, footer ul li {
    display: inline;
    margin-right: 20px;
    font-size: 1.5em;
}
a {
    text-decoration: none;
    color: #0660FE;
}
a:hover {
    text-decoration: underline;
}
h1 {
    font-size: 3em;
    font-family:'Helvetica', 'Arial', 'Sans-Serif';
}
p {
    font-size: 1.5em;
    line-height: 1.4em;
    color: #333;
}
footer {
    border-top: 1px solid #d5d5d5;
    font-size: .8em;
}

ul.posts {
    margin: 20px auto 40px;
    font-size: 1.5em;
}

ul.posts li {
    list-style: none;
}

.profile-pic {
    height: 15%;
    width: 15%;
    border-radius: 50%;
}

.contact-link {
    display: inline-block;
    margin-top: 60px;
    text-decoration: none;
}

/* Social Links */
.social-links {
    margin: 20px 0;
    font-size: 1.5em;
}
.social-links a {
    margin: 0 10px;
    color: #333;
    text-decoration: none;
}
.btn-resume {
    font-size: 0.8em;
    border: 2px solid #333;
    padding: 8px 16px;
    border-radius: 5px;
    vertical-align: middle;
}
.btn-resume:hover {
    background: #333;
    color: #fff;
}

/* Project Grid */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
    text-align: left;
}

/* Cards */
.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
    background: #fff;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.card h3 {
    margin-top: 0;
}
.card-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
}