* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:Arial, Helvetica, sans-serif;
    background-color: rgb(207, 162, 77);
    color: #ffffff;
}

nav {
    display:inline-flex;
    justify-content: space-between;
    padding: 20px 10px;
    backdrop-filter: blur(5px);
    position: fixed;
    width: 100%;
}

.Explore {
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 20px;
    background: #af7c0d;
    color: rgb(255, 255, 255);
}

.logo {
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #af7c0d;
}

.nav-links {
    color: white;
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color:  #ffffff;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(41, 41, 41, 0.7)), url('90s-Childhood-games.webp') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    margin-bottom: 40px;
}

.games-section {
    padding: 60px;
}

.section-title {
    text-align: center;
    font-size: 35px;
    margin-bottom: 50px;
    color: rgb(121, 106, 67);
}

.games-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 60px;
}

.game-card {
    background: #0d071f7c;
    border-radius: 20px;
    overflow:auto;
    width: 320px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.game-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-info {
    padding: 20px;
    text-align: center;
}

.click-btn {
    background: rgba(245, 200, 2, 0.582);
    color: rgb(0, 0, 0);
    padding: 5px 15px;
    text-decoration: none;
    display: inline-block;
}

.link-but {
    background: rgba(245, 168, 2, 0.774);
    color: rgb(0, 0, 0);
    border-radius: 15px;
    padding: 5px 15px;
    text-decoration: none;
    display: inline-block;
}

footer {
    color:black;
    text-align: center;
}