body {
  font-family: var(--font-family);
  font-size: 16px;
  text-align: center;
  margin-top: 50px;
  background-color: var(--primary-color);
}

h1 {
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 32px;
  font-weight: bold;
}

main {
  position: relative;
  text-align: center;
  width: 70%;
  margin: 0 auto;
  background-color: var(--secondary-color);
  padding: 40px 30px;
  min-height: 93vh;
  box-sizing: border-box;
  border-radius: 8px;
  box-shadow: 0 8px 20px var(--shadow-color);
}

/* Responsive adjustments, for smaler sceens e.g. mobile */
@media (max-width: 768px) {
  main {
    width: 100%;
    margin-top: -24px;
    min-height: 93vh;
  }
  
  body {
    font-size: 14px;
  }
  
  h1 {
    font-size: 25px;
  }
}