html {
  height: 100%;
  overflow: hidden;
  position: relative;
  overscroll-behavior: none;
  -webkit-overflow-scrolling: touch;
}

body {
  height: 100%;
  margin: 0;
  overflow: auto;
  position: relative;
  overscroll-behavior: none;
  -webkit-overflow-scrolling: touch;
}

#root {
  width: 100vw;
  height: 100vh;
  background-color: white;
}
@font-face {
  font-family: "Proxima Nova";
  src: url(./assets/fonts/proximaNova_regular.ttf);
}

.bodyLaunchScreenTransition {
  background-color: #f9faff;
  background-image: url("./images/background.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.bodyContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 25px;
  margin-right: 25px;
}

.logo {
  display: block;
    margin: 0 auto 69px;
    width: 200px;
    height: 60px;
  }
  
  .titleFerret {
    font-family: 'Proxima Nova';
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 27px;
    color: #142030;
    margin: 0 0 7px;
  }
  
  .titleFerret>span {
    font-family: 'Proxima Nova';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    color: #697080;
  }
  
  .subtitle {
    margin: 0 0 4px;
    font-family: 'Proxima Nova';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #697080;
}

.definition {
  font-family: 'Proxima Nova';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #142030;
  display: flex;
}

.definitionContent {
  font-family: 'Proxima Nova';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #142030;
}

.definitionNumber {
  display: inline-block;
  width: 20px;
}
.highlight {
  color: #078167;
}