/* Basic reset */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    background-image: url("bg.png");
    background-size: cover;
    background-position: center;
}

/* Header styling */
header {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
}

header h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

/* Main content */
main {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Section styling */
section {
    background-color: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
}

h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    margin-bottom: 15px;
}

/* Skills list */
#skills ul {
    list-style: none;
    padding-left: 0;
}

#skills li {
    font-size: 18px;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #ecf0f1;
    border-left: 4px solid #3498db;
}

/* Email link styling */
.email-link {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 16px;
    background-color: #ecf0f1;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.email-link:hover {
    background-color: #3498db;
    color: white;
}

/* Footer styling */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 18px;
}

