* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}


/* Navigasyon Çubuğu */

header {
    background-color: #333;
    color: white;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
}

nav ul li a:hover {
    color: #ddd;
}


/* Ana İçerik */

.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.about-section {
    background-color: #f4f4f4;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
}

.about-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}


/* Discord Link Butonu */

.discord-link {
    display: inline-block;
    background-color: #5865F2;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1.2rem;
    text-decoration: none;
    transition: 0.2s ease;
    margin-top: 20px;
}

.discord-link:hover {
    background-color: #4752C4;
}


/* Footer */

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
}


/* Responsive Tasarım */

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    .about-section h1 {
        font-size: 1.8rem;
    }
}