<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {
margin: 0;
padding: 0;
}
section {
width: 100%;
height: 100vh;
}
section article {
position: fixed; width: 200px; height: 200px;
background-color: #000; bottom: 50px; right: 50px;
}
section:nth-of-type(1) { background-color: orange; }
section:nth-of-type(2) { background-color: lightblue; }
section:nth-of-type(3) {background-color: pink;}
</style>
</head>
<body>
<section>
<article></article>
</section>
<section>
</section>
<section>
</section>
</body>
</html>