html,
body {
  margin: 0px;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
textarea {
  margin: unset;
}

.disable_select {
  user-select: none;
  /* supported by Chrome and Opera */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
}


textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

::selection {
  color: white;
  background: #fb295b;
  /* WebKit/Blink Browsers */
}

::-moz-selection {
  color: white;
  background: #fb295b;
  /* Gecko Browsers */
}

::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  /* Remove scrollbar space */
  /* background: rgba(0, 0, 0, 0.1); */
  /* Optional: just make scrollbar invisible */
}


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