/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background-color: #1f1f1f;
    padding: 20px;
    position: relative;
}

.logo {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 50px;
    height: auto;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #ff4081;
}

/* Main Sections */
.intro {
    margin: 20px 0;
}

/* Projects Section */
.projects {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.project-card {
    background-color: #1f1f1f;
    padding: 15px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
    text-align: center;
    max-width: 300px;
}

.project-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.project-card h3 {
    color: #ff4081;
}

.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #ff4081;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background-color: #e63770;
}

/* Footer */
footer {
    margin-top: 20px;
    padding: 10px;
    background-color: #1f1f1f;
}
