/* reference: https://en.wikipedia.org/wiki/Flag_of_Somalia */

:root {
  --flag-height: 2;
  --flag-width: 3;
  --somalia-blue: #4189dd;
  --somalia-white: #ffffff;
  --somalia-star-size: 40%;
}

#somalia {
  position: relative;
  height: 180px;
  aspect-ratio: var(--flag-width) / var(--flag-height);
  background: var(--somalia-blue);
}

#somalia::before {
  content: "";
  position: absolute;
  width: var(--somalia-star-size);
  height: var(--somalia-star-size);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><polygon fill="%23ffffff" points="15,0 19,11 30,11 21,17 24,28 15,22 6,28 9,17 0,11 11,11"/></svg>');
}
