body {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
}

header, nav, footer {
    width: 100%;
    text-align: center;
    padding: 10px;
}

.container {
    display: flex;
    max-width: 1200px;
    margin: 20px auto; /* Üst ve alt boşluk */
}

.sidebar {
    width: 250px;
    background: #2a2a2a;
    padding: 15px;
    border-radius: 5px;
    margin-right: 20px;
}

.sidebar h3 {
    color: #e0e0e0;
    margin-bottom: 10px;
}

.sidebar a {
    display: block;
    color: #ff9d00;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    transition: background 0.3s;
    margin-bottom: 5px;
}

.sidebar a:hover {
    background: #444;
}

.post {
    display: none; /* Başlangıçta tüm postları gizle */
    background: #2a2a2a;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.post h2 {
    color: #ff9d00;
    margin: 0 0 10px;
}

.post p {
    margin: 10px 0;
}

footer {
    background-color: #ff9d00;
    color: white;
    padding: 15px;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 20px; /* Üstte boşluk */
}
nav {
    margin: 20px 0;
    text-align: center;
}

nav a {
    margin: 0 15px;
    color: #ff9d00; /* Daha koyu turuncu yazı rengi */
    text-decoration: none; /* Alt çizgi yok */
    font-weight: bold;
    padding: 8px 12px; /* İçerik boşluğu */
    border: 2px solid transparent; /* Kenar boşluğu */
    border-radius: 5px; /* Kenar yuvarlama */
    transition: background-color 0.3s, border-color 0.3s; /* Geçiş efekti */
}

nav a:hover {
    background-color: #e0e0e0; /* Üzerine gelindiğinde arka plan rengi */
    border-color: #ff9d00; /* Üzerine gelindiğinde kenar rengi */
}
.sidebar a {
    display: block;
    color: #ff9d00; /* Softer shade of orange for links */
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
    margin-bottom: 5px;
}

.sidebar a:hover {
    background: #444; /* Darker background on hover */
    color: #ffffff; /* White text on hover for better contrast */
}
.post {
    display: none; /* Başlangıçta tüm postları gizle */
    background: #2a2a2a; /* Arka plan rengi */
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    color: #e0e0e0; /* Yazı rengi */
}

.post h2 {
    color: #ff9d00; /* Başlık rengi */
    margin: 0 0 10px;
}

.post p {
    color: #ffffff; /* Tarih rengi */
    margin: 10px 0;
}
.post a {
    color: #ff9d00; /* Turuncu renk */
    text-decoration: none; /* Alt çizgi yok */
}

.post a:hover {
    text-decoration: underline; /* Üzerine gelindiğinde alt çizgi */
}
.email {
    background-color: #007acc;
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    font-size: 24px;
    text-decoration: none;
    transition: background-color 0.3s;
}

