/* 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ığı */
.content h1 {
    font-size: 48px;
    text-align: left;
    margin-top: 30px;
    padding-left: 50px;
}

/* Proje Bölümü */
.project-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    padding: 40px;
}

/* Soldaki Proje Bilgileri */
.project-info {
    max-width: 40%;
    text-align: left;
}

.project-item {
    color: inherit;
    text-decoration: none;
}

.project-item:hover {
    text-decoration: none;
    color: #9999ff; /* Hover rengini değiştirmek için isteğe bağlı */
}

.project-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #ffffff;
    text-decoration: none;
}

.project-item img {
    width: 120px;
    height: 120px;
    margin-right: 15px;
}

.project-text h2 {
    font-size: 40px;
    margin: 0;
}

.project-text p {
    font-size: 32px;
    margin: 5px 0 0;
}

/* Sağdaki Takım Fotoğrafı */
.project-image img {
    width: 600px;
    border-radius: 10px;
}
