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

body {
  background-color: rgb(26, 31, 36);
  color: white;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(48, 64, 78);
}

h1::before {
  content: "______";
  color: rgb(127, 127, 175);
  font-size: 20px;
}

h1::after {
  content: "*";
  color: rgb(150, 90, 90);
  font-size: 50px;
}

li:nth-child(odd) {
  background-color: rgb(48, 64, 78);
}

li:not(.ThisOne) {
  background-color: rgb(41, 93, 93);
}

li:first-child {
  color: red;
}

li:last-child {
  color: rgb(232, 194, 58);
}

button {
  margin: 20px;
  transition: 0.4s;
}

button:hover {
  transform: scale(110%);
}
