/* Temel stil ayarları */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica', sans-serif;
    background-color: #faf0f4; /* Pudra pembesi */
    color: #333;
    line-height: 1.6;
}

.content {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

header {
    background-color: #f7c6d6; /* Bebek pembesi */
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
}

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

header p {
    font-size: 1.3em;
    color: #5a5a5a;
}

section {
    margin-top: 30px;
}

h2 {
    font-size: 1.8em;
    color: #f7c6d6;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 2px solid #f7c6d6;
    padding-bottom: 5px;
}

.about p {
    font-size: 1.1em;
    color: #666;
    text-align: justify;
}

.skills {
    margin-top: 30px;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.skill {
    background-color: #f7c6d6; /* Bebek pembesi */
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1em;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

footer {
    margin-top: 40px;
    text-align: center;
    color: #888;
    font-size: 1em;
}
