34 lines
509 B
CSS
34 lines
509 B
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
max-width: 900px;
|
|
margin: 50px auto;
|
|
padding: 20px;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
}
|
|
|
|
.games-container {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
gap: 20px;
|
|
margin-top: 40px;
|
|
}
|
|
|
|
.game-card {
|
|
border: 1px solid #ccc;
|
|
padding: 30px;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
background: #f5f5f5;
|
|
}
|
|
|
|
.game-card h2 {
|
|
margin: 0 0 10px 0;
|
|
}
|
|
|
|
.game-card p {
|
|
margin: 0;
|
|
color: #666;
|
|
} |