<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Japan Flag</title>
<style>
.flag {
width: 600px; /* Set the desired width */
height: 400px; /* Set the desired height */
background-color: white;
position: relative;
border: 1px solid black; /* Optional border */
}
.circle {
width: 240px; /* Adjust the size of the circle */
height: 240px; /* Adjust the size of the circle */
background-color: red;
border-radius: 50%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
</style>
</head>
<body>
<div class="flag">
<div class="circle"></div>
</div>
</body>
</html>