* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
::selection {
  background: rgba(255, 118, 225, 0.99);
  color: rgb(13, 14, 15);
}
body {
  background: rgb(13, 14, 15);
  color: rgb(219, 219, 219);
  padding: 4vmin;
}
main {
  overflow-x: hidden;
}
pre {
  font-size: 1rem;
  text-overflow: ellipsis;
  float: left;
}
button {
  float: right;
  cursor: pointer;
  background: #3482db;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  border-radius: 0.3rem 1rem 0.3rem 1rem;
  transition: 100ms;
}
button:hover {
  background: #307bcf;
  box-shadow: 0px 0px 0px 1px #175caa;
}
button:active {
  background: #286dbd;
  box-shadow: 0px 0px 0px 1px #114a8b;
}
