@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --pageGrey: #212121;
  --lightBlue: #acc0ce;
  --pagePurple: #b0899f;
  --pagePink: #fff0fb;
  --pageYellow: #fadf72;

  --darkBlue: #42565d;
  --pageGreen: #5f9774;
  --lightGreen: #8ed29c;
  --shadowBlue: #edfff4;
  --grey: #a2a2a2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(bg.png);
  background-repeat: repeat;
  background-size: 700px;
}
.content {
  position: relative;
  width: 1000px;
  margin: 100px auto;
  z-index: 1;
  background: #fff;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.content h2 {
  font-size: 2em;
  margin-bottom: 20px;
}
.content p {
  font-size: 1.2em;
  line-height: 1.6em;
  margin-bottom: 10px;
}
