diff --git a/5-blazor/1-complete/ConnectFour/Shared/Board.razor b/5-blazor/1-complete/ConnectFour/Shared/Board.razor
index f26ec14..e1c600f 100644
--- a/5-blazor/1-complete/ConnectFour/Shared/Board.razor
+++ b/5-blazor/1-complete/ConnectFour/Shared/Board.razor
@@ -12,13 +12,13 @@
diff --git a/5-blazor/1-complete/ConnectFour/Shared/Board.razor.css b/5-blazor/1-complete/ConnectFour/Shared/Board.razor.css
index 4bacc88..3938084 100644
--- a/5-blazor/1-complete/ConnectFour/Shared/Board.razor.css
+++ b/5-blazor/1-complete/ConnectFour/Shared/Board.razor.css
@@ -83,31 +83,31 @@ span.container {
box-shadow: 0 0 0 4px var(--player2);
}
-.col1 {
+.col0 {
left: calc(0em + 9px);
}
-.col2 {
+.col1 {
left: calc(4em + 9px);
}
-.col3 {
+.col2 {
left: calc(8em + 9px);
}
-.col4 {
+.col3 {
left: calc(12em + 9px);
}
-.col5 {
+.col4 {
left: calc(16em + 9px);
}
-.col6 {
+.col5 {
left: calc(20em + 9px);
}
-.col7 {
+.col6 {
left: calc(24em + 9px);
}
diff --git a/5-blazor/README.md b/5-blazor/README.md
index 2a7c8f8..26fdebf 100644
--- a/5-blazor/README.md
+++ b/5-blazor/README.md
@@ -289,13 +289,13 @@ The [GameState.cs file is in this repository](1-complete/ConnectFour/Shared/Game
```csharp
```