:root {
  font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #242424;
  background-color: #242424;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  --red: #fe5050;
  --blue: #3d93d4;
}

a {
  font-weight: 500;
  color: #646cff;
  text-decoration: inherit;
}

a:hover {
  color: #535bf2;
}

body {
  margin: 0;
  display: flex;
  place-items: center;
  min-width: 320px;
  min-height: 100vh;
  background: #dce4ff;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to bottom, #E2E2E2, #d3dbff);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to bottom, #E2E2E2, #d2dafe); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

h1 {
  font-size: 3.2em;
  line-height: 1.1;
}

#app {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

button {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.8em 1.8em;
  font-size: 0.8em;
  font-weight: 600;
  font-family: inherit;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-position 0.25s;
  color: #fff;
  background: #3d93d4;
  background: -webkit-linear-gradient(to right, #3d93d4 0%, #2F80ED 51%, #3d93d4 100%);
  background-image: linear-gradient(to right, #3d93d4 0%, #2F80ED 51%, #3d93d4 100%);
  background-size: 200% auto;
  box-shadow: 1px 2px 4px -1px #001554, 1px 2px 6px -2px #004d90;
}

button:hover {
  background-position: right center;
}

button:active {
  outline: none;
  box-shadow: 1px 2px 2px -1px #001554, 1px 2px 4px -2px #004d90;
}

.buttons-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.buttons-wrapper div {
  padding: 20px;
}

.console {
  margin: 1rem;
  padding: 0.5rem;
  background-color: rgba(47, 148, 237, 0.06);
  border-radius: 25px;
}

.red {
  background: var(--red);
}

.orange {
  background: orange;
}

.text-red {
  color: var(--red);
}

.text-orange {
  color: orange;
}

.text-blue {
  color: var(--blue);
}
