* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  overflow: hidden;
}

header {
  background: #0d0d0f;
  width: 100%;
  height: 3rem;
  min-height: 76px;
  padding: 1rem 3rem;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.3px;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: calc(100% - 76px);
  background: var(--surface-dark-background, #0d0d0f);
  position: relative;
  padding: 5rem;
}

.content {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.title {
  font-family: 'Instrument Sans', sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  font-variation-settings: 'wdth' 100;
  font-size: 3rem;
  margin-top: 3rem;
}

.subtitle {
  font-family: 'Instrument Sans', sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  font-variation-settings: 'wdth' 100;
  font-size: 1rem;
  margin-top: 1rem;
}

.title,
.subtitle {
  color: #ffffff;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
