﻿
.image-container {
    text-align: center; /* Center image and text inside */
    margin-bottom: 20px; /* Optional spacing */
}
.image-containerLeft {
    text-align: left; /* Center image and text inside */
    margin-bottom: 20px; /* Optional spacing */
}

.image-container img {
    width: 800px; /* Adjust size as needed */
    height: auto;
    display: inline-block;
}
.mybtn {
    border-radius: 10px;
    border: 2px solid #01519b;
    color: #01519b;
    margin: 5px 2px 5px 0;
    height: 25px;
    width: 120px;
    font-size: 12px;
    background-color: white;
    font-weight: bold;
}

    .mybtn:hover {
        background-color: #01519b;
        color: white
    }
.error {
    color: red;
    text-align: center;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
}

.page-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    /* Gradient text */
    --c1: hsl(210, 60%, 50%);
    --c2: hsl(330, 60%, 50%);
    background: linear-gradient(90deg, var(--c1), var(--c2), var(--c1));
    background-size: 200% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: slide-gradient 8s infinite ease-in-out;
    margin: 0 auto; /* Center horizontally */
    max-width: max-content;
}

@media (prefers-reduced-motion: reduce) {
    .page-title {
        animation: none;
    }
}

@keyframes slide-gradient {
    0% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }

    100% {
        background-position: 0% center;
    }
}

