*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

.banner {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),url(/img/2.png);
    background-size: cover;
    background-position: center;
}

.navbar {
    width: 85%;
    margin: auto;
    padding: 35px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 170px;
    cursor: pointer;
    color: #ff1e00;
}

.navbar ul li {
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    position: relative;
}

.navbar ul li a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
}

.navbar ul li::after {
    content: '';
    height: 3px;
    width: 0%;
    background: #ff1e00;
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: 0.5s;
}

.navbar ul li:hover::after {
    width: 100%;
}

span {
    background: #009688;
    height: 100%;
    width: 0%;
    border-radius: 25px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: 0.5s;
}

button:hover span {
    width: 100%;
}

button:hover {
    border: none;
}

footer {
    background-color: #080e0e;
}

footer p {
    width: 100%;
    padding: 15px 0;
    text-align: center;
    color: #fff;
}

/* Current Projects Start */

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

header {
    background-color: #ffffff00;
    color: #fff;
    padding: 15px 0;
    text-align: center;
}

h1 {
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.game-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    /* Adjusted size for 3 games in a row */
    gap: 20px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.game {
    background-color: #202020;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.65);
}

.game img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.game h2 {
    margin-top: 10px;
    font-size: 18px;
    color: #fff;
}

/* Short description */
.game p {
    margin-top: 10px;
    font-size: 14px;
    color: #777777;
}

/* Hover effect for projects */
.game {
    transition: transform 0.3s ease-in-out;
}

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

/* Anchor color */
.game a {
    color: inherit;
    text-decoration: none;
}

.game a:hover {
    color: inherit;
}

/* Current Projects End */

/*
footer Start
*/

footer {
    background-color: #222;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-links ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.legal-links ul li {
    display: inline;
    margin-right: 35px;
}

.legal-links ul li:first-child {
    margin-left: 0;
}

.legal-links ul li a {
    color: #fff;
    text-decoration: none;
}

.legal-links ul li a:hover {
    text-decoration: underline;
}

/*
footer End
*/