<h3>Saint Kitts and Nevis</h3>

<div class="flag saint_kitts_and_nevis">
  <div class="saint_kitts_and_nevis__black_strip">
    <div class="saint_kitts_and_nevis__star"></div>
    <div class="saint_kitts_and_nevis__star"></div>
  </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;
}

.saint_kitts_and_nevis {
  background: linear-gradient(-33.5deg, #c8102e 50%, #009739 0);
  display: grid;
  place-items: center;
}

.saint_kitts_and_nevis__black_strip {
  width: 150%;
  height: 70px;
  border: 10px solid #ffcd00;
  background-color: black;
  transform: rotate(-34deg);
  display: flex;
  justify-content: center;
  gap: 80px;
}

.saint_kitts_and_nevis__star {
  height: 100%;
  aspect-ratio: 1;
  background-color: white;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.