<!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;
background-color: aqua;
}
.box {
width: 500px;
height: 500px;
background-color: aqua;
display: flex;
align-items: center;
border-radius: 50%;
background: linear-gradient(white 50%, black 50%);
}
.box::before {
content: "";
width: 250px;
height: 250px;
background-color: white;
background: radial-gradient(black 25%, white 25%);
border-radius: 50%;
display: inline-block;
}
.box::after {
content: "";
width: 250px;
height: 250px;
background-color: black;
background: radial-gradient(white 25%, black 25%);
border-radius: 50%;
display: inline-block;
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>