@import url('https://fonts.googleapis.com/css2?family=Signika:wght@300;400;700&display=swap');

body { 
  font-family: 'Signika',Helvetica Neue,Lato,Segoe UI,Helvetica,Arial,sans-serif;
}

/* For write and delete effect */
.blink {
  animation: blink 0.5s infinite;
}
@keyframes blink{
  to { opacity: .0; }
}

/* For underline as svg */
u, .underline {
  text-decoration: none;
  border-bottom: none;
  padding-bottom: 0.1em;
  background: url(/static/images/underline.svg) bottom left no-repeat;
  background-size: 100% 0.218em;
}

/* For fading background images */
.showme{
  opacity:1;
  transition:opacity 0.5s linear;
}

.hideme{
  opacity:0;
  transition:opacity 0.5s linear;
}

/* Customizing input */

/* 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;
}