* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* overflow-x: hidden; */
}

nav {
    background: linear-gradient(to bottom, #e89876, #d67856);
    padding: 3vh 5vw;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5vw;
    margin-right: 20px;
}

.logo-circle {
    width: 6vw;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.logo-text {
    font-size: 3vw;
    font-weight: bold;
    font-family: "Pixelify Sans", sans-serif;
    color: #2a2a2a;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.nav-links {
    display: flex;
    gap: 1vw;
    margin-left: auto;
}

.nav-btn {
    background: #c85a3a;
    color: #2a2a2a;
    padding: 2vh 3vw;
    border: none;
    border-radius: 25px;
    font-size: 2vw;
    font-weight: bold;
    font-family: "Pixelify Sans", sans-serif;
    cursor: pointer;
    box-shadow: 0 4px 0 #8b3a1a, 0 6px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.1s ease;
    text-decoration: none;
    display: inline-block;
}

.nav-btn:hover {
    background: #d67856;
    box-shadow: 0 6px 0 #8b3a1a, 0 8px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

body {
    background-image: url('/image/background.png');
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
}

.game-frame {
    display: flex;
    background-color: #FE9B65;
    height: 300px;
    align-items: center;
    margin-top: 150px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}
.photo-gebeid {
    display: flex;
    gap: 150px;
}
.photo1 {
    display: flex;
    background-color: #D9D9D9;
    width: 250px;
    height: 250px;
    margin-left: 150px;
    border-radius: 20px;
}
.photo2 {
    display: flex;
    background-color: #D9D9D9;
    height: 250px;
    width: 350px;
    border-radius: 20px;
}
.game-info{
    max-width: 550px;
    margin-left: 200px;
}
.game-info h2 {
    color: white;
    font-size: 40px;
}
.game-info p:first-of-type {
    font-size: 25px;
}
.game-info a {
    text-decoration: none;
    color: white;
    font-size: 25px;
}
.all-games-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

footer {
    display: flex;
    background-color: #FE9B65;
    margin-top: 60px;
    align-items: center;
    padding: 30px 0;
}
footer p {
    font-size: 25px;
    font-family: "Pixelify Sans", sans-serif;
}

.footerCntr-flexbox{
    display:flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap:5px;
    margin-left:40px;
}
@media screen and (max-width: 940px) {
.game-frame {
    flex-direction: column;
    height: auto;
    width: 90%;
    margin: 20px auto;
    padding: 20px 0;
    }
.photo-gebeid { 
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin: 0;
    }
.photo1, .photo2 {
    width: 45%;
    height: 150px;
    margin: 0;
    border-radius: 10px;
    }
.game-info {
    margin: 20px 0 0 0;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    }
.nav-links {
    flex-direction: row;
    gap: 10px;
    display:flex;
    margin: 0;
    padding: 0;
  }
  .nav-btn {
    padding: 1vh 2vw;
    font-size: 3vw;
  }

  .logo-circle img {
    width:10vw;
    height: auto;
  }
  .logo-circle
    {
        width: 10vw;
        height: auto;
    } 
}