/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a0a0a;
    color: #fff;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Header */
header {
    background: linear-gradient(to right, #000, #222);
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 3em;
    margin: 0;
    color: #d4af37;
    text-transform: uppercase;
    font-weight: 600;
}

p {
    font-size: 1.2em;
    margin-top: 10px;
    font-weight: 300;
}

.follow-btn {
    display: inline-block;
    background: #d4af37;
    color: #000;
    padding: 12px 24px;
    margin-top: 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    border-radius: 8px;
    transition: 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(212, 175, 55, 0.3);
}

.follow-btn:hover {
    background: #b8860b;
    transform: scale(1.05);
}

/* Sections */
section {
    padding: 50px 10px;
    max-width: 900px;
    margin: 0 auto;
}

.about, .history {
    background: #111;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

h2 {
    font-size: 2em;
    color: #d4af37;
    font-weight: 600;
}
