@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Inter:400,500,700,600");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0px;
  height: 100%;
}
/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}
.vh-screen {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1404px) {
  .vh-screen {
   height: 90vh;
  }
}
.fus-btn {
  cursor: pointer;
  transition: all 0.3s ease;
}
.fus-btn:hover {
  transform: scale(1.05);
}
.disclaimer {
  align-self: center;
  font-family: Inter;
  font-weight: 300;
  font-style: Light;
  font-size: 13px;
  leading-trim: NONE;
  line-height: 120%;
  letter-spacing: 1%;
  text-align: center;
  vertical-align: middle;
  color: #2304044D;

}