/*
 * SPDX-FileCopyrightText: Copyright (c) 2019-2026 Yegor Bugayenko
 * SPDX-License-Identifier: MIT
 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body,
#field {
  width: 100%;
  height: 100%;
}

#laser {
  position: absolute;
  bottom: 10px;
  width: 60px;
  height: 20px;
  background-color: seagreen;
}

#bullet {
  position: absolute;
  bottom: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: orange;
}

.invader {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 40px;
  height: 10px;
  background-color: firebrick;
}
