/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
    padding: 50px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#games {
    margin-top: 30px;
}

#game1 {
    margin-bottom: 20px;
}

.panel-body {
    margin-top: 30px;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.panel-body a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.panel-body a:hover {
    text-decoration: underline;
}