.games {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.game {
    background-color: #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    width: 250px;
}

img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 10px;
}

.game p {
    font-family: sans-serif;
    font-weight: bold;
    margin: 10px 0;
    color: #333;
}

.buy-button {
    transition: all 0.3s ease;
    background-color: #1a1a1a;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
}

.buy-button:hover {
    cursor: pointer;
    transform: translateY(-5px);
    box-shadow: #1a1a1a 0px 5px 10px;
}

.cancel-button {
    transition: all 0.3s ease;
    background-color: #e0e0e0;
    color: #1a1a1a;
    border: 2px dashed #1a1a1a;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
}

.cancel-button:hover {
    cursor: pointer;
    transform: translateY(-5px);
    box-shadow: #555555 0px 5px 10px;
}

header {
    color: white;
    background-color: #1a1a1a;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: sans-serif;
}

.shoptext {
    color: #295bff;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
}

h2, h3, a {
    text-decoration: none;
    color: black;
    text-align: left;
    margin: 30px 20px 10px 50px;
    font-family: sans-serif;
}

.input {
    margin: 10px 0;
    padding: 8px;
    width: 200px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
