屏幕 4 个角的 4 个按钮

4 buttons in 4 corners of the screen

我正在做一个学校项目,我需要在屏幕的 4 个象限中放置 4 个按钮。但是,第一个按钮与屏幕顶部和侧面之间有一点缝隙。

代码:

game.html

<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<title>Game</title>
<link rel="stylesheet" href="css/game.css">
</head>
<body>
<div id="container">
<button class="button">A</button>
<button class="button">B</button>
<button class="button">C</button>
<button class="button">D</button>
</div>
</body>
</html>

game.css

body {
  background-color: black;
  overflow: hidden;
  position: fixed;
}
h1, h2 {
  color: white;
  font-family: Ubuntu Mono;
}
#container {
  width: 100%;
  min-height: 100%;
  height: 100%;
}
.button {
  border: none;
  color: white;
  width: 50%;
  height: 50vh;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-family: Ubuntu Mono;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  position: fixed;
}
.button: nth-child(1) {
  background-color: #bf0000;
  top: 0;
  left: 0;
}
.button:nth-child(2) {
  background-color: #001fbf;
  top: 0;
  right: 0;
}
.button:nth-child(3) {
  background-color: #e6c52d;
  bottom: 0;
  left: 0;
}
.button:nth-child(4) {
  background-color: #1fbf1f;
  bottom: 0;
  right: 0;
}

但是,我得到了这里显示的输出:

如何消除第一个按钮处的空隙?

(如果需要,请帮我调颜色 :D)

感谢任何帮助! :D

这是 CSS 中的错字。

.button:nth-child(1) {
  background-color: #bf0000;
  top: 0;
  left: 0;
}

删除 .button:

后的 space