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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

header {
    position: relative;
}

.cover-image {
    background: url('images/cover.jpg') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

nav ul {
    position: absolute;
    top: 20px;
    right: 20px;
    list-style: none;
    display: flex;
    gap: 15px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.title-overlay {
    text-align: center;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.title-overlay h1 {
    font-size: 4rem;
}

.title-overlay p {
    font-size: 1.5rem;
}

.section-padding {
    padding: 50px 15%;
    background-color: white;
    margin-bottom: 30px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

#about p {
    font-size: 1.2rem;
    text-align: center;
}

.skills-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.skill {
    background: #eee;
    padding: 20px;
    border-radius: 10px;
    width: 45%;
    margin-bottom: 20px;
}

.project-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.project {
    width: 45%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.project img {
    max-width: 100%;
    border-radius: 10px;
}

.project-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 30px;
}

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