@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300;400;600;700&display=swap');

body {
    background-color: bisque;
    font-family: "Funnel Display", sans-serif;
    margin: 0;
}

h1, h2 {
    color: rgb(130, 109, 59);
}

a {
    color: inherit; 
    text-decoration: none; 
    cursor: pointer;
}

.Header {
    display: flex;
    justify-content: space-between; 
    align-items: center;   
    padding: 20px;
    width: 100%;
    height: 100px;
    box-sizing: border-box;
    background-color: rgb(202, 168, 117);
}

.OtherPages {
    display: flex;             
    gap: 50px;  
}

#Logo { 
    display: block; 
}

.game-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 40px;
}

.game {
    display: flex;
    justify-content: center;
}

.game img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
    transition: transform 0.2s;
}

.game img:hover {
    transform: scale(1.05);
}

