/* Common styles here */
body {
    text-align: center;
    margin: 50px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#palestine-flag {
    width: 300px; /* Adjust the size as needed */
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Shadow effect */
}

#slogan {
    margin-top: 20px;
    font-size: 1.5em;
}

#hijack {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

footer {
    margin-top: 50px;
    font-size: 1.2em;
}

.warning-tape {
    position: relative;
    display: inline-block;
    animation: blink 2s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.warning-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2em;
    padding: 5px 10px;
    z-index: 1;
}

.tape {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 150%;
    height: 3px;
    z-index: 0;
}

/* New styles added */
.heart {
    color: #e74c3c; /* Red color for hearts */
    font-size: 1.5em;
}

.support-text {
    font-size: 1.2em;
    color: #2ecc71; /* Green color for support text */
}

/* Language-specific styles here */
body {
    background-color: #2c3e50; /* Dark background color */
    color: #ecf0f1; /* Light text color */
}

#slogan {
    color: #3498db; /* Light blue color for the slogan */
}

#hijack {
    background-color: #e74c3c; /* Red background color */
    color: #fff; /* White text color */
    font-weight: 800;
}

footer {
    color: #e74c3c; /* Red color for the footer */
}