* {
  box-sizing: border-box; /* Menghitung padding dan border dalam ukuran elemen */
  margin: 0;
  padding: 0;
}

body {
  text-align: center;
  background-color: #011f3f;
}

#level-title {
  font-family: "Press Start 2P", cursive;
  font-size: 3rem;
  margin: 5%;
  color: rgb(255, 191, 0);
  margin-bottom: 20px;
}

#level-title2 {
  font-family: "Press Start 2P", cursive;
  font-size: 25px;
  margin: 0;
  padding: 0;
  color: #fef2bf;
}

.container {
  display: block;
  width: 50%;
  margin: auto;
}

.btn {
  margin: 25px;
  display: inline-block;
  height: 200px;
  width: 200px;
  border: 10px solid black;
  border-radius: 20%;
}

.game-over {
  background-color: red;
  opacity: 0.8;
}

.red {
  background-color: red;
}

.green {
  background-color: green;
}

.blue {
  background-color: blue;
}

.yellow {
  background-color: yellow;
}

.pressed {
  box-shadow: 0 0 20px white;
  background-color: grey;
}

/* Footer */

.divider {
  border-bottom: 2px solid rgb(255, 191, 0); /* Garis pembatas bawah */
  margin-bottom: 10px;
  width: 80%;
  justify-self: center;
}
.footer-line {
  margin-bottom: 0px 0px 16px;
  padding-bottom: 0px 0px 16px;
  line-break: normal;
}

ul {
  margin-bottom: 0;
  list-style: none;
}

li {
  font-size: 35px;
  text-align: center;
  padding-right: 30px;
}

a:visited,
a:link {
  text-decoration: none;
}

a:hover {
  transform: scale(1.1);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  filter: brightness(1.2);
}

.copyright {
  color: rgb(255, 191, 0);
  margin-top: 10px;
  font-family: "Courier New", Courier, monospace;
  font-size: 20px;
}
