.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Font and background image for body */
body {
    font-family: Tahoma, sans-serif;
    background-color: black;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

/* Navbar */
.navigation {
    padding: 0; /* removes default padding */
    list-style: none; /* removes default bullet points */
    padding-bottom: 20px; /* Adjust the gap size as needed */
    text-align: center; /* Keep this line for centering */
}

.navigation li {
    display: inline-block; /* Make list items behave like inline-block elements */
}

.navigation a {
    display: block; /* Make links behave like block elements */
    padding: 10px 20px; /* Add padding to links */
    text-decoration: none; /* Remove underline from links */
    color: white; /* Set text color */
}

    a:hover {
        background-color: #36454f; /* Set hover background color */
        color: black; /* Set hover text color */
    }

/* Social Media Icons */
.fa {
    padding: 20px;
    font-size: 30px;
    width: 50px;
    text-align: center;
    text-decoration: none;
}

#socialmedia .fa::before {
    font-family: "Font Awesome 5 Brands" !important;
}

/* Add a hover effect if you want */
.fa:hover {
    opacity: 0.7;
}

/* Set a specific color for each brand */

/* Facebook */
.fa-facebook {
    background: #3B5998;
    color: white;
}

/* LinkedIn */
.fa-linkedin {
    background: #0a66c2;
    color: white;
}

/* YouTube */
.fa-youtube {
    background: #FF0000;
    color: white;
}

/* Instagram */
.fa-instagram {
    background: #8a3ab9;
    color: white;
}

/* Tiktok */
.fa-tiktok {
    background: #ff0050;
    color: white;
}

/* Tiktok */
.fa-twitter {
    background: #1DA1F2;
    color: white;
}

.button {
    transition-duration: 0.4s;
    background-color: #36454f;
    color: white;
    padding: 14px 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100px;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-work {
    width: 250px;
    height: 50px;
    margin: 0 auto;
    padding: 0;
    display: table-cell;
    vertical-align: middle;
}

.button:hover {
    background-color: white;
    color: black;
    border: none;
}

.text {
    color: white;
    font-size: 30px;
}

.video-text {
    color: white;
    font-size: 15px;
}

h1 {
    color: white;
    text-align: center;
}

h2 {
    color: white;
    text-align: center;
}

footer {
    color: white;
    text-align: center;
}

/* Style the navigation bar */
ul {
    list-style: none; /* Remove default bullet points */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
    overflow: hidden; /* Clip content if it overflows */
    background-color: black; /* Set background color */
}

li {
    display: inline-block; /* Make list items behave like inline-block elements */
}

a {
    display: block; /* Make links behave like block elements */
    padding: 10px 20px; /* Add padding to links */
    text-decoration: none; /* Remove underline from links */
    color: white; /* Set text color */
}

    a:hover {
        background-color: #36454f; /* Set hover background color */
        color: black; /* Set hover text color */
    }

table {
    margin: 0 auto; /* Centers the table horizontally */
}

th {
    padding: 10px; /* Add padding for spacing */
    text-align: left;
}

td {
    padding: 10px; /* Add padding for spacing */
}

/* Helper class for alternating colors */
.alternate-color {
    color: red;
}

/* Even rows (including the first row) have alternating colors */
tr:nth-child(even) td:nth-child(odd) {
    color: red;
}

tr:nth-child(even) td:nth-child(even) {
    color: red;
}

/* Odd rows have alternating colors (reversed from even rows) */
tr:nth-child(odd) td:nth-child(odd) {
    color: white;
}

tr:nth-child(odd) td:nth-child(even) {
    color: white;
}

.videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Adjust width as needed */
    gap: 20px; /* Adjust spacing between videos */
}

.video {
    padding: 10px;
    border-radius: 5px; /* Optional rounded corners */
    text-align: center;
}

.video img {
    width: 100%; /* Adjust image width as needed */
    /* Add styling for image hover effects (optional) */
}