body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #fff;
}

header {
    background-color: #0a5bf1;
    color: #fff;
    text-align: center;
    padding: 20rem 20px;
}

header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    position: relative;
}

header p {
    font-size: 1.5rem;
    font-weight: lighter;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    position: relative;
}

header img {
    width: 200px;
    height: 200px;
    border-radius: 10%;
    margin-top: -10px;
}

.introSection {
    margin-top: -20px;
}

section {
    margin: 20px auto;
    padding: 20px;
    max-width: 70%;
    background: #ba6a00;
    color: #fff;
    border-radius: 8px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.skills, .projects {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: black;
    justify-content: center;
    margin-top: 20px;
    
}

.card {
    background: #eee;
    padding: 15px;
    text-align: center;
    width: 150px;
    border: 1px solid #3d9315;
    border-radius: 10px;
    transition: transform 0.3s;
}

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

footer {
    background-color: #0a5bf1;
    color: #fff;
    text-align: center;
    padding: 15px;
    text-decoration: none;
    margin-top: 20px;
}

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