body {
    font-family: "SUSE", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F2F1E6; /* Contact arka plan rengi */
    color: #333;
    text-align: center;
}

header {
    background-color: coral; /* üst topbarın altındaki rengi ayarlıyor*/
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    text-align: center;
}

nav ul {
    list-style-type: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}


nav ul li {
    display: inline;
}

nav ul li a {
    color: whitesmoke;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover{
    color: bisque;
}

section {
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

#about, #blog, #contact {
    background-color: bisque; /*Ana sayfa kutularının rengi*/
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: inline-block;
    width: 80%;
    text-align: center;
    margin-bottom: 20px; /* Alt kısımda biraz boşluk bırak */
}

.contact-details {
    text-align: left;
    margin: 20px;
}

.contact-details ul {
    list-style-type: none;
    padding: 0;
}

.contact-details li {
    margin-bottom: 10px;
}

footer {
    text-align: center;
    padding: 10px 0;
    background-color: darkred; /* Footer'ın arka plan rengi */
    color: #fff;
    width: 100%;
    position: static; /* Footer artık sabit değil, doğal akışta */
}
.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    top: 5px; /* Fotoğrafı topbarın altına yerleştiriyoruz */
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}


.profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fotoğrafın tamamını daireye sığdır */
}

