/* General Image Styles */
* {
    font-family: Oswald, sans-serif;
    font-size: 18px;
    line-height: 2;
}
a {
    color:rgb(0, 2, 121);
}
p{
    font-family:'Times New Roman', Times, serif;
}
/* General Image Styles */
.ImageScale {
    transition: transform 0.25s ease-in-out; /* Smooth transition for both hover and unhover states */
    width: 600px;
    height: auto;
    border: 1px solid #000000;
}

/* Image Hover Effect */
.ImageScale:hover:not(.no-hover) {
    transform: scale(1.025); /* Scale up on hover */
}

/* Darken Background Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

body.darken::before {
    opacity: 1;
}

/* Centered and Scaled Image */
.ImageScale.hovered {
    position: fixed;
    z-index: 1000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
    transition: transform 0.25s ease-in-out; /* Ensure smooth transition when clicked */
}

/* Navbar Styles */
.navbar.navbar-expand-lg.bg-body-tertiary {
    background-color: #495057af !important;
}

/* Dropdown Menu Styles */
.dropdown-menu .dropdown-item {
    color: black;
}

.dropdown-menu, .dropdown-toggle {
    background-color: #495057af !important;
}

h1 {
    font-weight: bolder;
}

h2 {
    font-weight: bold;
}

/* Column Background */
.col_Background {
    background-color: #495057af;
    border-radius: 4px;
}

/* Center and Shrink Container */
#centerAndShrink {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 80%;
    height: 80%;
    background-color: rgba(255, 255, 255, 0.7);
    margin: auto;
    border-radius: 8px;
}

/* Body Background */
body {
    background-image: url("../Images/Backgroundimg.png");
    background-size: cover;
}
