<h3>Namibia</h3>
<div class="flag namibia">
<img src="https://imgur.com/z8ZgB3P.png" height="66" alt="" />
</div>
* {
box-sizing: border-box;
margin: 0;
}
body {
width: 100%;
height: 100vh;
background-color: rgb(221, 239, 255);
display: grid;
place-items: center;
font-family: cursive;
font-weight: bold;
}
h3 {
position: absolute;
text-align: center;
top: 20px;
}
/* Main Style Stars from here */
.flag {
position: relative;
width: 300px;
height: 200px;
box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
overflow: hidden;
}
.namibia {
background: linear-gradient(
145deg,
#003580 40%,
#fff 40%,
#fff 43%,
#d21034 43%,
#d21034 57%,
#fff 57%,
#fff 60%,
#009543 0
);
}
.namibia > img {
position: absolute;
left: 25px;
top: 20px;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.