/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #1a1a1a;
}

header {
    text-align: center;
    padding: 40px 0;
    background-color: #2a2a2a;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 2.5em;
    color: #ffffff;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    color: #bdbdbd;
}

main {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

h2 {
    color: #ffffff;
    margin-bottom: 20px;
    border-bottom: 2px solid #424242;
    padding-bottom: 10px;
}

#about p {
    display: flex;
    justify-content: center;
    gap: 20px;
}

#about a {
    color: #9e9e9e;
    font-size: 24px;
    transition: color 0.3s ease;
}

#socials a {
    color: #9e9e9e;
    font-size: 24px;
    transition: color 0.3s ease;
}

#socials a:hover {
    color: #ffffff;
}

#projects a {
    color: #9e9e9e;
    transition: color 0.3s ease;
}

#projects a:hover {
    color: #ffffff;
}

#socials p {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.project {
    margin-bottom: 25px;
    padding-left: 12px;
    border-left: 3px solid #424242;
}

.project h3 {
    color: #ffffff;
    margin-bottom: 5px;
}

.project p {
    color: #bdbdbd;
}

footer {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    color: #9e9e9e;
    font-size: 0.9em;
}

/* Responsive design */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    header {
        padding: 20px 0;
    }

    h1 {
        font-size: 2em;
    }

    main {
        padding: 20px;
    }
}