* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #0c0c0c;
  font-family: 'Consolas', 'Courier New', monospace;
}

.container {
  text-align: center;
  padding: 0 15px;
}

.ascii {
  white-space: pre-wrap;
  font-size: 16px;
  margin-bottom: 20px;
  color: #ccc;
}

.text, .prices {
  color: white;
  font-size: 18px;
  line-height: 1.5;
}

.svg {
  margin: 10px;
  width: 6%;
  height: auto;
}

@media screen and (max-width: 768px) {

  .ascii {
    font-size: 10px;
    margin-bottom: 15px;
  }

  .text, .prices {
    font-size: 16px;
  }

  .svg {
    width: 10%;
    margin: 8px;
  }

}

@media screen and (max-width: 480px) {

  .ascii {
    font-size: 8px;
  }

  .text, .prices {
    font-size: 14px;
  }

  .svg {
    width: 12%;
  }
}
