body {
    font-family: 'Tajawal', sans-serif; /* Updated font family to Tajawal */
    font-weight: 500; /* Added font weight to use Tajawal Medium */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000;
    color: #fff;
}

.container {
    text-align: center;
}

.logo {
    max-width: 300px; /* Increased the max-width to 300px */
    margin: 40px auto;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
}

.note {
    font-size: 22px;
    color: #ccc;
    margin-bottom: 20px;
}

.note span {
    color: #EE8822; /* Added a new style for the span element */
    font-size: 1.4em; /* Increased the font size of the span element */
}

.animated-exclamation {
    animation: fade-out-in 2s infinite; /* Added animation */
}

@keyframes fade-out-in {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .logo {
        max-width: 250px; /* Increased the max-width to 250px for smaller screens */
    }
}