/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: black;
}

/* Body and basic layout */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color:white;
}

/* Header */
header {
    background-color:#5788a9;
    color:brown;
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 0 auto;
}

header h1 {
    font-size: 2em;
}

header nav ul {
    list-style-type: none;
}

header nav ul li {
    display: inline;
    margin-left: 20px;
}

header nav ul li a {
    text-decoration: none;
    color:white;
    font-size: 1.1em;
}

/* Sections */
section {
    padding: 50px 0;
}

section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.2em;
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* About Section */
#about p {
    text-align: center;
    font-size: 1.1em;
}

/* Skills Section */
#skills ul {
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    padding: 0;
    justify-items: center;
}

#skills ul li {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
}

/* Projects Section */
#projects .project {
    background-color: gray;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

#projects .project a {
    display: inline-block;
    margin-top: 10px;
    color:white
    text-decoration: none;
}

#projects .project a:hover {
    text-decoration: underline;
}

/* Contact Section */
#contact form {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: 0 auto;
}

#contact label {
    margin-bottom: 8px;
    font-size: 1.1em;
}

#contact input, #contact textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

#contact button {
    padding: 12px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
}

#contact button:hover {
    background-color: #555;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}
