/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1e0033;
    color: #ffffff;
}

/* Üst Menü */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
    background-color: #1e0033;
}

.navbar a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 30px;
    font-size: 36px;
    font-weight: bold;
}

.navbar a:hover {
    color: #9999ff;
}

/* İçerik Başlıkları */
.content h1 {
    font-size: 64px;
    text-align: left;
    margin-top: 30px;
    padding-left: 100px;
}

/* Deneyim Listesi */
.experience-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    padding-left: 100px;
}

.experience-item {
    display: flex;
    align-items: center;
}

.experience-item img {
    width: 100px;
    height: 100px;
    margin-right: 10px;
}

.experience-item a {
    color: #ffffff;
    text-decoration: none;
    font-size: 48px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.experience-item a:hover {
    color: #9999ff;
}

/* Sağdaki Resim */
.experience-image {
    position: absolute;
    top: 150px;
    right: 100px;
}

.experience-image img {
    width: 400px;
    border-radius: 10px;
}
