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

:root {
    --bg-color: #1a1a1a;
    --primary-color: #ff4757;
    --card-bg-color: #2c2c2c;
    --text-color: #e0e0e0;
    --text-muted-color: #a0a0a0;
    --border-color: #444;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.main-nav {
    display: flex;
    justify-content: flex-end; /* Align nav to the right */
    gap: 1rem;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}


.banner {





    width: 100%;





    height: 300px; /* Adjust height as needed */





    overflow: hidden;





    position: relative;





    margin-bottom: 2rem;





    display: flex; /* Make banner a flex container */





    justify-content: center; /* Center horizontally */





    align-items: center; /* Center vertically */





}











.banner-background {





    width: 100%;





    height: 100%;





    object-fit: cover;





    position: absolute;





    top: 0;





    left: 0;





    z-index: -1; /* Place background behind logo */





}











.banner-logo {





    max-width: 80%; /* Adjust size as needed */





    max-height: 80%;





    object-fit: contain;





    z-index: 1; /* Ensure logo is above background */





}



.container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 2rem;

}



.main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.card {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.card h3 {
    margin-top: 0;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.author {
    color: var(--text-muted-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.ip-address {
    background-color: #111;
    border: 1px solid var(--border-color);
    padding: 1rem;
    text-align: center;
    border-radius: 5px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 1rem;
}

.social-icons a {
    color: var(--text-color);
    font-size: 2rem;
}
