* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: system-ui;
  height: 100vh;
}
.app {
  height: 100%;
  width: 100%;
  background: #444;
  color: #fff;
  text-align: center;
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0 20px;
  margin-left: auto;
  margin-right: auto;
}
.title {
  font-size: 40px;
  color: #ff5050;
}
.suggestions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
  font-size: 18px;
  list-style: none;
  text-align: start;
}
li {
  color: #eee;
}
button {
  border: none;
  outline: none;
  width: fit-content;
  display: block;
  margin: 0 auto;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 18px;
  color: #fff;
  background: #222;
  transition: 0.5s;
}
button:hover {
  background: #333;
}
.footer {
  text-align: center;
  width: 100%;
  background: #111;
  padding: 10px 0;
  font-size: 18px;
  position: absolute;
  bottom: 0;
}
span {
  font-weight: bold;
  color: #ff9b00;
  cursor: pointer;
}
.hide {
  display: none;
}
