/* General body styles */
body {
    background-image: url('https://i.pinimg.com/originals/75/87/df/7587df77ef521cf98057d0028ee983f1.gif');
    background-size: cover;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Header styling */
h1 {
    color: #fff;
    font-size: 4em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.4);
}

/* Paragraph text styling */
p {
    color: #bebebe;
    font-size: 1.4em;
    margin-bottom: 40px;
    text-shadow: 1px 1px 5px rgba(255, 253, 253, 0.4);
}

/* Button styling */
.start-button {
    font-size: 1.5em;
    background-color: #fff;
    color: #bebebe;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    margin: 15px;
    width: 250px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.start-button:hover {
    background-color: #bebebe;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.start-button:active {
    transform: translateY(2px);
}

/* Creating a floating effect on the page */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80%;
}

/* About Us and About the Game Buttons Styling */
.buttons-container {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

/* Basic styling for the navigation bar */
nav {
    background-color: #333;
    padding: 10px;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

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

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px;
    display: block;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #555;
    border-radius: 5px;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    .start-button {
        width: 200px;
    }
}
/* Container for game cards (using CSS Grid) */
.game-flex-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 columns */
    gap: 20px; /* Space between cards */
    margin: 20px;
}

/* Card styling */
.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

/* Card content styling */
.card-body {
    padding: 20px;
}

.card-title {
    font-size: 1.6em;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

/* Play button styling */
.btn-primary {
    display: inline-block;
    font-size: 1.2em;
    padding: 10px 20px;
    background-color: #ff6f91;
    color: white;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #ff3e6e;
    transform: translateY(-3px);
}

/* Hover effect for cards */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* Responsive design */
@media (max-width: 768px) {
    .game-flex-container {
        grid-template-columns: 1fr 1fr; /* 2 columns on small screens */
    }

    .card {
        width: 100%; /* Cards will take up full width on small screens */
    }
}
/* Example CSS to style the creator section */
.creators {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.creator {
    text-align: center;
    border: 2px solid #ddd;
    padding: 10px;
    border-radius: 10px;
    background-color: #f9f9f9;
}

.creator-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

h3 {
    margin-top: 10px;
    color: #333;
}

p {
    font-size: 14px;
    color: #555;
}
o {
    font-size: 14px;
    color: #ffffff;
}

.special-game-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    font-family: 'Georgia', serif; /* Serif font for a classic feel */
    background-color: #f9f6f1; /* Soft cream background */
    color: #333; /* Dark text for readability */
    line-height: 1.6;
    padding: 20px;
}

/* Navigation Bar */
.about-us-nav {
    background-color: #3b3a36; /* Vintage dark color */
    padding: 10px 20px;
    text-align: center;
}

.about-us-nav ul {
    list-style: none;
}

.about-us-nav li {
    display: inline;
    margin: 0 15px;
}

.about-us-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.about-us-nav a:hover {
    color: #e5a11b; /* Vintage yellow for hover effect */
}

/* About Us Container */
.about-us-container {
    text-align: center;
    margin: 50px auto;
    max-width: 900px;
}

h1 {
    font-size: 36px;
    font-family: 'Arial', sans-serif;
    color: #3b3a36;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 18px;
    font-style: italic;
    color: #555;
    margin-bottom: 50px;
}

/* Creator Profiles */
.creators {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.creator {
    width: 45%;
    background-color: #f0e4d7; /* Vintage cream background for each creator */
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.creator:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.15);
}

.creator-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 5px solid #d1d0c5; /* Vintage border around images */
}

h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #3b3a36;
}

p {
    font-size: 16px;
    color: #555;
}

/* Footer */
.about-us-footer {
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
    color: #fff;
    font-size: 14px;
}

.about-us-footer p {
    margin: 0;

/* General Style */
body {
    font-family: 'Georgia', serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

nav {
    background-color: #2c3e50;
    padding: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #ecf0f1;
    font-size: 18px;
    padding: 10px;
}

nav ul li a:hover {
    background-color: #34495e;
    border-radius: 5px;
}

/* Container and Text */
.container {
    text-align: center;
    margin-top: 50px;
}

.container h1 {
    font-size: 36px;
    color: #2c3e50;
    font-family: 'Georgia', serif;
}

.container p {
    font-size: 20px;
    color: #34495e;
}

/* Card Design */
.card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 15px;
    width: 200px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-body {
    padding: 20px;
}

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

.card-title {
    font-size: 18px;
    color: #2c3e50;
    margin-top: 10px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e67e22;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #d35400;
}

/* Flex Container for Games */
.game-flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px 0;
}

.special-game-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.special-game-container .card {
    width: 300px;
}
}
.container h1,
.container p {
    color: white; /* Change text color to white */
    font-size: 50px; /* Set font size to 20px */
}
.about-us-container h1,
.about-us-container p.intro-text {
    color: white; /* Change text color to white */
    font-size: 20px; /* Set font size to 20px */
}