@import url("https://fonts.googleapis.com/css2?family=PT+Sans&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
   -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  min-height: 100vh;
  background-color: #222831;
  background: linear-gradient(to bottom right, #38628c, #1a3b5c);
  /*  */
  font-family: "PT Sans", sans-serif;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #040404;
  /*  */
  display: flex;
  justify-content: center;
  align-items: center;
}

input:focus,
select:focus {
  outline: none;
}

button:focus {
  outline: 0;
}

/* - - - - - - - - - - - - - - - -  */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #bfbfbf;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #bfbfbf;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #bfbfbf;
}
