:root {
  --greyLightest: #e6eaef;
  --white: #ffffff;
  --grey: #c8d1dc;
  --green: #62a60f;
  --black: #00000;
  --fontFamily: GraphikRegular, 'Helvetica Neue', Sans-Serif;
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--greyLightest);
  font-family: var(--fontFamily);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.logo {
  width: 90px;
}

.title {
  margin-bottom: 0;
  text-align: center;
}

.header-and-button {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.start-button {
  padding: 8px 16px;
  margin-top: 50px;
  margin-bottom: 8px;
  max-width: 800px;
  font-weight: 700;
  text-align: center;
  justify-content: center;
  border-radius: 8px;
  border-width: 1px;
  border-color: var(--grey);
  background-color: var(--green);
  color: var(--white);
  cursor: pointer;
}
