html {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #FBFCFD;
  height: 100%;
  color: #090D32;
}

* {
  box-sizing: border-box;
  user-select: none;
  font-family: "MonaSans-Regular", sans-serif;
}

@font-face {
  font-family: "MonaSans-Regular";
  src: url("MonaSans-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

h1 {
  font-size: 36px;
  margin-top: 60px;
  margin-bottom: 28px;
}

#logo {
  font-weight: bold;
  font-size: 20px;
  color: #424988;
}

#topbar {
  height: 60px;
  border-bottom: 1px solid #CCD4E2;
  width: 100%;
}

#logoImage {
  margin-top: 16px;
  margin-left: 28px;
  margin-right: 8px;
}

#content {
  flex: 1;
  width: 100%;
  background: url("img/pattern.png") no-repeat center center fixed;
  background-size: cover;
  text-align: center;
}

.redAccent {
  color: #EF476F;
}

.greenAccent {
  color: #118AB2;
}

.purpleAccent {
  color: #8C3DDF;
}

.lighterText {
  color: #52556F;
}

#getStartedButton {
  margin-top: 24px;
  margin-bottom: 30px;
  padding-top: 12px;
  text-decoration: none;
  display: inline-block;
  border-radius: 48px;
  background-color: #424988;
  color: white;
  border: none;
  font-size: 19px;
  font-weight: bold;
  text-align: center;
  width: 158px;
  height: 48px;
}