<h3>North Macedonia</h3>
<div class="flag north_macedonia">
<div class="left_shapes">
<div class="shape"></div>
<div class="shape"></div>
<div class="shape"></div>
</div>
<div class="top__shape"></div>
<div class="bottom__shape"></div>
</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;
}
.north_macedonia {
background: #d91a21;
}
.north_macedonia::before {
content: "";
position: absolute;
background-color: #f8e92e;
inset: 0;
margin: auto;
width: 50px;
aspect-ratio: 1;
border-radius: 1in;
border: 6px solid #d91a21;
z-index: 1;
}
.north_macedonia > .left_shapes {
display: flex;
flex-direction: column;
justify-content: space-evenly;
height: 100%;
width: 50%;
box-reflect: right 0;
}
.north_macedonia > .left_shapes > .shape,
.north_macedonia > .top__shape,
.north_macedonia > .bottom__shape {
background-color: #f8e92e;
width: 100%;
height: 40px;
clip-path: polygon(0 0, 100% 45%, 100% 55%, 0% 100%);
}
.north_macedonia > .left_shapes > .shape:nth-child(1) {
transform: scaleX(1.5) rotate(50deg);
}
.north_macedonia > .left_shapes > .shape:nth-child(3) {
transform: scaleX(1.5) rotate(-50deg);
}
.north_macedonia > .top__shape,
.north_macedonia > .bottom__shape {
position: absolute;
margin: 0 auto;
width: 25%;
height: 50px;
rotate: 90deg;
left: 29%;
top: 11px;
transform: translatey(-50%);
}
.north_macedonia > .bottom__shape {
transform: scaleX(-1);
top: 70%;
left: 38%;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.