<h3>Belarus</h3>
<div class="flag belarus">
<img class="belarus__logo" src="https://imgur.com/RpVNYAD.png" alt="" />
</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;
}
.belarus {
display: flex;
background: linear-gradient(to right, #cf0f1a 67%, #007d2c 0);
}
.belarus__logo {
position: absolute;
height: 100%;
left: 2px;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.