```html
<!DOCTYPE html>
<html>
<head>
<title>Ultimate Board Games</title>
<style>
:root {
--cell-size: 70px;
--piece-size: 50px;
}
body {
display: flex;
flex-direction: column;
align-items: center;
background:
#f0f0f0;
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
}
.game-container {
display: gr ...
Смотреть оригинал записи...