@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 {
  --darkBlue: #19313e;
  --cream: #ffe4c4;
  --emerald: #40755e;
  --gold: #956d3c;
  --bronze: #634625;
  --seaFoam: rgb(33,230,191);
  --goldenRod: rgb(255,181,46);
  --bubbleGum: rgb(255,181,246);


}
* {  
  margin: 0;
  padding:0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body {
  min-height: 200vh;
}
section {
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background:#333;
  position: fixed;
}
section h2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 18em;
}
.circle1 {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--seaFoam);
  clip-path: circle(150px at 0 0);
}
.circle2 {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--goldenRod);
  clip-path: circle(150px at 100% 100%);
}
.circle1 h2, .circle2 h2 { 
  color: transparent;
  -webkit-text-stroke: 5px #333;

}