<section>
  <h2>Codepen</h2>
  <p>Is a coding plateform for HTML and CSS and JS developers</p>
</section>
<section>
  <h2>Github</h2>
  <p>Is a coding plateform for multiple languages</p>
</section>
<section>
  <h2>Codier</h2>
  <p>Is a coding plateform for challenges.</p>
</section>
@import url('https://fonts.googleapis.com/css2?family=Bungee+Spice&display=swap');
body, html{
  padding: 0;
  margin: 0;
  scroll-snap-type: y mandatory;
  background: #050505;
  font-family: "Bungee Spice", sans-serif;
  font-weight: 400;
  font-style: normal;
}
h2{
  font-size: calc(3vw + 15px);
  text-shadow: 0 0 9vw orange;
}
p{
  font-size: calc(1.5vw + 15px);
  color: orange;
  text-align: center;
}
body{
  display: flex;
  flex-direction: column;
}
section{
  min-height: 100vh;
  margin: 0;
  padding: 15px;
  box-sizing: border-box;
  display: grid;
  place-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.