h2 {
    margin: 40px;
}

.game-card {
    display: flex;
    background-color: white;
    flex-direction: column;
    padding: 50px 50px;
    border-radius: 25px;
    margin: 40px 20px;
    box-shadow: 0px 0px 10px 4px rgba(16, 29, 14, 0.514);
    color: #a56a2a;
    font-size: 1.5rem;
    text-shadow: 1px 1px lightgray;
    max-width: 700px;
}

.game-card hr {
    border-color: #a56a2a;
    width: 100%;
}

.title-container {
    font-size: 2rem;
    display: inline-block;
    text-align: right;
    text-shadow: 2px 2px lightgray;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.title-container:hover {
    cursor: pointer;
    color: #01447e;
    transform: scale(1.02);
}

.game-description{
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 30px;
    align-items: center;
}

.game-image {
    width: 100%;
    height: auto;
    transition: transform 0.2s ease;
}

.game-image:hover {
    transform: scale(1.02);
}

.game-description .game-image img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 25px;
    box-shadow: 0px 0px 10px 4px lightgray;
}