html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    color: #555;
    cursor: url('path/to/custom-cursor.png'), auto;
    zoom: 150%;
    background-color: #555;
}

/* Image Hover Effect */
.body img {
    margin-right: 10px;
    border: 2px solid #000000;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.body img:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.body h2 {
    width: 100%;
}

/* Responsive Typography */
h1, h2, h3, h4, h5, h6 {
    color: #f0ff24;
}

p {
    font-size: calc(1rem + 0.5vw);
    color: #f0ff24;
}

.algeria-icon {
    width: 50px;
    height: 50px;
    grid-column: 2/3;
    justify-self: end;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.algeria-icon:hover {
    transform: scale(1.1); /* Slightly enlarges the image */
    filter: brightness(1.2); /* Increases brightness on hover */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    background-color: gray;
}

::-webkit-scrollbar-thumb {
    background-image: linear-gradient(rgb(0, 0, 99), black);
}

/* CTA Button */
.cta-button {
    padding: 15px 30px;
    background-color: #f0ff24;
    color: white;
    border-radius: 5px;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #f0ff24;
    transform: translateY(-5px);
}

.cta-button:active {
    transform: translateY(2px);
}

/* Header Styles */
.header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    text-align: center;
    background-image: linear-gradient(rgb(38, 38, 129), black);
    padding: 20px;
    border-bottom: 5px solid gold;
}

.header a.og {
    color: #f0ff24;
    position: relative;
    transition: color 0.3s;
}

.header a.og::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #f0ff24;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
}

.header a.og:hover::before {
    visibility: visible;
    transform: scaleX(1);
}

.header img {
    border: 2px solid #f0ff24;
    border-radius: 50%;
}

.header h2 {
    margin: 10px 0;
}

/* Marquee Styles */
marquee {
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    background-color: #F7F9FB;
    color: #555;
}

.marquee span {
    font-weight: bold;
    text-decoration: underline;
    color: #f0ff24;
}

/* Body Styles */
.body {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    background-color: #555;
}

.body button.item {
    width: 200px;
    height: 100px;
    padding: 15px;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background-color 0.3s;
    background-color: #2A3F54; /* Dark Navy */
}

.body button.item:hover {
    transform: translateY(-5px);
    background-color: #1B2A3C; /* Darker Navy */
    animation: buttonPulse 1s infinite alternate;
}

/* Keyframes */
@keyframes buttonPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    }
    100% {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    }
}