@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  scroll-behavior: smooth;
}

h1,h2,h3,h4,h5,h6,p {
  margin: 0;
}

* {
  box-sizing: border-box;
}

.wrapper {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}

body .contentBox {
  width: 100%;
  max-width: 1200px;
  min-height: 600px;
  /*border: solid 2px var(--paynes-gray);*/
  border-radius: 16px;
  margin: 60px auto 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}