/* Reset some default styles */
body, h1, p {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-size: x-large;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  line-height: 1.6;
  color: #333;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
}
body nav {
  display: flex;
  align-items: center;
  width: 100%;
  height: 64px;
}
body nav #lock {
  width: 100%;
  display: flex;
  flex-flow: row;
  flex-direction: row-reverse;
  height: 40px;
  padding: 0 24px;
}
body nav #lock a {
  text-decoration-line: none;
}
body main {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
body main #centerBox {
  display: flex;
  flex-flow: column;
  justify-content: center;
  height: 100%;
  max-width: 680px;
  gap: 24px;
  padding: 40px;
}
body main #centerBox #nameAvatar {
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 24px;
}
body main #centerBox #nameAvatar #nameTitle {
  display: flex;
  flex-flow: column;
}
body main #centerBox #nameAvatar #nameTitle #title {
  font-style: italic;
}
body main #centerBox #nameAvatar img {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  border: 1px solid #DDDDDD;
}
body main #centerBox #welcomeMessage {
  display: flex;
  flex-flow: column;
  gap: 16px;
  text-align: left;
}
body main #centerBox #welcomeMessage a {
  color: #333;
  font-weight: bolder;
}
body main #centerBox #linkBox {
  display: flex;
  flex-flow: row;
  gap: 12px;
  margin-top: 24px;
}
body main #centerBox #linkBox a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bolder;
  text-decoration: none;
  padding: 8px 24px;
  border-radius: 80px;
}
body main #centerBox #linkBox .primary {
  color: #fff;
  background-color: #333;
}
body main #centerBox #linkBox .primary:hover {
  color: white;
  background-color: #999;
}
body main #centerBox #linkBox .secondary {
  color: #333;
  border: 1px solid #333;
  background-color: #fff;
}
body main #centerBox #linkBox .secondary:hover {
  color: #fff;
  background-color: #333;
}/*# sourceMappingURL=styles.css.map */