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

:root {
  --flag-height: 2;
  --flag-width: 3;
  --lesotho-blue: #003da5;
  --lesotho-white: #ffffff;
  --lesotho-green: #009543;
}

#lesotho {
  position: relative;
  height: 180px;
  aspect-ratio: var(--flag-width) / var(--flag-height);
  background: linear-gradient(
    180deg,
    var(--lesotho-blue) 0%,
    var(--lesotho-blue) 33.333%,
    var(--lesotho-white) 33.333%,
    var(--lesotho-white) 66.666%,
    var(--lesotho-green) 66.666%,
    var(--lesotho-green) 100%
  );
}
