body {
    background-color: #2c2c2c; /* dark grey background */
    color: #f5f5f5;            /* light grey text */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header, footer {
    background-color: #1c1c1c; /* darker grey for header/footer */
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav a {
    color: #f5f5f5; /* light grey link color */
    text-decoration: none;
}

nav a:hover {
    color: #ffcc00; /* highlight on hover */
}

section {
    padding: 20px;
    text-align: left;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background-color: #4e4e4e; /* input field background */
    color: #f5f5f5;
    border: none;
}

button {
    background-color: #ffcc00; /* button color */
    color: #1c1c1c;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #f5f5f5; /* button hover */
}

.social-links p {
    margin: 0;           /* Remove default margin */
}

.social-links a {
    color: #ffffff;      /* Set link color to white */
    text-decoration: none; /* Remove underline */
}

.social-links a:hover {
    color: #ffcc00;      /* Highlight color on hover */
}

body {
    background-color: #2c2c2c; /* dark grey */
    color: #f5f5f5; /* light grey */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.hero {
    background: url('path/to/your/image.jpg') no-repeat center center/cover; /* Background image */
    color: #ffffff; /* Text color */
    text-align: center;
    padding: 100px 20px; /* Space around the text */
}

.btn {
    background-color: #ffcc00; /* Button color */
    color: #1c1c1c; /* Button text color */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none; /* Remove underline */
}

.features, .latest-posts {
    padding: 20px;
    text-align: center;
}

.feature {
    margin: 20px;
    display: inline-block;
    width: 30%; /* Adjust width as necessary */
    background-color: #444444; /* Slightly lighter grey */
    padding: 20px;
    border-radius: 8px;
}

.post {
    background: #444444; /* Post background */
    margin: 15px auto;
    padding: 10px;
    border-radius: 8px;
    width: 80%;
}

.post h4 a {
    color: #f5f5f5; /* Link color */
    text-decoration: none; /* Remove underline */
}

.post h4 a:hover {
    color: #ffcc00; /* Hover effect */
}

body {
    background-color: #2c2c2c; /* dark grey */
    color: #f5f5f5; /* light grey */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #1c1c1c; /* Darker grey for header */
    padding: 20px;
}

header h1 {
    margin: 0 0 10px; /* Adjust heading margin */
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav a {
    color: #f5f5f5; /* link color */
    text-decoration: none; /* no underline */
}

nav a:hover {
    color: #ffcc00; /* highlight on hover */
}

.hero {
    background: url('path/to/your/image.jpg') no-repeat center center/cover; /* Background image */
    color: #ffffff; /* Text color */
    text-align: center;
    padding: 100px 20px; /* Space around text */
}

.btn {
    background-color: #ffcc00; /* Button color */
    color: #1c1c1c; /* Button text color */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none; /* Remove underline */
}

.features, .latest-posts {
    padding: 20px;
    text-align: center;
}

.contact-info, .disclaimer {
    padding: 20px;
    text-align: center;
    background-color: #444444; /* Slightly lighter grey for contrast */
    margin: 20px auto; /* Center sections */
    border-radius: 8px;
}

.contact-info p, .disclaimer p {
    color: #f5f5f5; /* Light grey text */
}

.white-text {
    color: #ffffff; /* White color */
    text-decoration: none; /* Remove underline */
}

.white-text:hover {
    color: #ffcc00; /* Change hover color for better visibility */
}

.linux-image {
    text-align: center; /* Center the image */
    margin: 20px 0; /* Add some margin */
}

.linux-img {
    max-width: 100%; /* Responsive size */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: add rounded corners */
}


.blog-posts {
    padding: 20px;
}

.post {
    background-color: #444444; /* Card background color */
    margin: 20px 0;
    padding: 15px;
    border-radius: 8px;
}

.post h3 {
    margin: 0 0 10px; /* Margin for post title */
}

.post a {
    text-decoration: none; /* Remove underline */
    color: #ffcc00; /* Link color */
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #ffffff; /* White color for read more button */
}

.back-to-home {
    text-align: center; /* Center align */
    margin: 20px 0;
}

.back-to-home .btn {
    padding: 10px 15px;
    background-color: #ffcc00; /* Button color */
    color: #1c1c1c; /* Text color */
    border: none;
    border-radius: 5px;
    text-decoration: none;
}

.back-to-home .btn:hover {
    background-color: #ffd700; /* Highlight on hover */
}


<style>
    body {
        background: linear-gradient(to right, #343a48, #2c3e50);
        color: white;
        font-family: Arial, sans-serif;
    }
    .video-container {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    .video-thumbnail {
        text-align: center;
        width: 200px; /* Adjust width if needed */
    }
    .video-thumbnail img {
        width: 100%;
        height: auto;
        border: 1px solid white;
    }
</style>
