<h3>Dominican</h3>

<div class="flag dominican">
  <div></div>
  <div></div>
  <div></div>
  <div></div>

  <img src="https://imgur.com/oGnIkD1.png" height="50" alt="" class="dominican__logo" />
</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;
}

.dominican {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  background-color: white;
}

.dominican > div:nth-child(1),
.dominican > div:nth-child(4) {
  background-color: #0f2e6b;
}

.dominican > div:nth-child(2),
.dominican > div:nth-child(3) {
  background-color: #cd1325;
}

.dominican__logo {
  position: absolute;
  inset: 0;
  margin: auto;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.