<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS Flag Project</title>
<style>
.flag {
width: 900px;
height: 600px;
background-color: rgb(206, 17, 38);
position: relative;
}
.flag > p {
color: white;
font-size: 75px;
text-align: center;
}
.flag > div {
background-color: rgb(0, 40, 104);
height: 300px;
width: 100%;
position: absolute;
top: 150px;
}
.flag div div {
border-radius: 50%;
background-color: white;
width: 200px;
height: 200px;
top: 50px;
left: 350px;
position: relative;
}
div, p {
margin: 0px;
}
.flag div p {
font-size: 75px;
text-align: center;
}
</style>
</head>
<body>
<div class="flag">
<p>The Flag</p>
<div>
<div>
<p>of Laos</p>
</div>
</div>
</div>
</body>
</html>