body {
    margin:0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: white;
}

header {
    text-align: center;
    padding: 20px;
    background-color: #1a1a1a;
    border-bottom: 2px solid #333;
}

.site-logo {
    width: 200px;
    height: auto;
    margin: 0 auto;
    display: block;
    margin-bottom: 10px;
}

header h1 {
    color: #fff;
    font-size: 2em;
    margin: 10px 0;
}

nav button {
    margin: 5px;
    padding: 10px 15px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav button:hover {
    background-color: #555;
}

#wallpapers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.wallpaper {
    position: relative;
    margin: 10px;
    width: 200px;
}

.wallpaper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Download button ki styling */
.download-button {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #007bff;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wallpaper:hover .download-button {
    opacity: 1;
}
/* Search bar ke liye naya CSS */
#searchInput {
    padding: 10px;
    border: 1px solid #333;
    background-color: #1e1e1e;
    color: white;
    border-radius: 5px;
    margin-left: 20px;
}

#searchInput:focus {
    outline: none;
    border-color: #555;
}
 /* Blog Section */
.blog-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
}

.blog-post {
    background-color: #1a1a1a;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.blog-post h2 {
    color: #007bff;
    font-size: 1.8em;
    margin-top: 0;
}

.blog-date {
    color: #888;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.blog-post img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.blog-post p {
    line-height: 1.6;
}
/* Disclaimer and Footer Styling */
.disclaimer-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 8px;
}

.disclaimer-container h2 {
    color: #007bff;
    text-align: center;
}

.disclaimer-container p {
    line-height: 1.6;
    font-size: 1em;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #1a1a1a;
    border-top: 2px solid #333;
    margin-top: 20px;
}

footer a {
    color: #007bff;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}
.like-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}


