.flash-container {
  margin: 0 auto;
  width: 80vw;
  position: relative;
  height: auto;
}

.flash-player {
  display: flex;
  justify-content: center;
  width: 65vw;
  height: 70vh;
  margin: auto auto;
}

.flash-description {
  padding-bottom: 8rem;
}

.flash-thumbnail {
  width: 12rem;
}

.game-browser {
    display: grid;
    
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    
    gap: 20px; 
    
    padding: 20px;
    margin: 0 auto;
    max-width: 1800px;
}

.game-browser a {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.2s;
}

.game-browser a:hover {
    transform: translateY(-1rem); 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.game-browser img {
    width: 100%; 
    height: auto;
    display: block;
    margin-bottom: 10px;
    border-radius: 4px;
}
