<!DOCTYPE html>
<html lang="tr">

<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
Filistin Bayrağı ve Mesajı <title>Filistin Bayrağı ve Mesajı</title>
<style>
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
background-color: #f0f0f0;
font-family: 'Arial', sans-serif;
color: #333;
}

.flag-container {
margin-bottom: 30px; /* Bayrak ile paragraf arasına boşluk */
}

.flag {
width: 450px; /* Bayrak genişliği */
height: 300px; /* Bayrak yüksekliği */
position: relative;
overflow: hidden;
border: 1px solid #ccc; /* İsteğe bağlı: Bayrak etrafına hafif bir sınır */
}

.stripe {
width: 100%;
height: 33.33%;
position: absolute;
}

.black {
background-color: #000000;
top: 0;
}

.white {
background-color: #FFFFFF;
top: 33.33%;
}

.green {
background-color: #007A3D;
top: 66.66%;
}

.red-triangle {
width: 0;
height: 0;
border-top: 150px solid transparent; /* Bayrak yüksekliğinin yarısı */
border-bottom: 150px solid transparent; /* Bayrak yüksekliğinin yarısı */
border-left: 225px solid #EE2A35; /* Bayrak genişliğinin yarısı */
position: absolute;
left: 0;
top: 0;
}

.message-paragraph {
max-width: 600px; /* Paragrafın genişliğini sınırlayın */
text-align: center;
line-height: 1.6;
font-size: 1.2em;
padding: 0 20px; /* Yanlardan boşluk */
}

.message-paragraph strong {
color: #C0392B; /* Vurgulamak için kırmızı renk */
}
</style>


<div class="flag-container">
<div class="flag">
<div class="stripe black"></div>
<div class="stripe white"></div>
<div class="stripe green"></div>
<div class="red-triangle"></div>
</div>
</div>
<p class="message-paragraph">
<strong>Support Palestine. Boycott Israel.</strong> Stand with the Palestinians in their struggle for freedom, justice, and equality. Whilst our governments financially support the apartheid state, we don't have to.
</p>