html{scroll-behavior:smooth}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    /* White background */
    color: #333;
    /* Dark text for readability */
    color: #333333;
    /* Adjust for preferred shade of black */
    background-color: white;
    /* White background */
}

/* Primary Theme Color */
:root {
    --primary-color: #ff6600;
    /* Orange color */
}

h2 {
    text-shadow: 0 0 1em hsla(34, 100%, 50%, 0.5),
        0 0 0.125em hsla(35, 100%, 60%, 0.5),
        -0.25em -0.125em 0.125em hsla(0, 0%, 0%, 0.25),
        0.25em 0.125em 0.125em hsla(200, 100%, 60%, 0.25);
}

h3 {
    font-size: x-large;
    text-align: center;
}

header {
    background: #ff6600;
    /* Orange background for the header */
    color: black !important;
    /* White text */
    padding: 10px 0;
    text-align: center;
}

header a {
    color: #fff;
    /* White text for links */
    text-decoration: none;
}

.fake-header {
    margin-top: 74px;
}

.navbar {
    background-color: #FFC107 !important;
    color: black !important;

    padding: 15px;
    text-align: left;
    font-size: 24px;
    /* overflow: hidden; */
    position: fixed;
    top: 0px;
    border-bottom: 3px solid black;
    border-top: 1px solid black;
}

/* Navbar links */
.navbar a {
    float: left;
    display: block;
    color: #ff6600;
    /* Orange text for navbar links */
    /* color: #f2f2f2; */
    text-align: center;
    padding: 14px;
    text-decoration: none;
}

.navbar a:hover {
    text-decoration: underline;
}

.navbar a.active {
    color: #1e1e1e;
    background: white;
}

.nav-link.active {
    color: #1e1e1e;
    background: white;
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky-top {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1020;
}


#pe {
    font-weight: bold;
    font-size: xx-large;
    color: orange;
}

/* Page content */
.content {
    padding: 16px;
}

section {
    padding: 20px 0;
}

footer {
    background: #000;
    /* Black background for the footer */
    color: #fff;
    /* White text */
    padding: 10px 0;
    text-align: center;
}

.hero {
    height: 80vh;
    max-height: 40rem;
}

.hero-image {
    height: 100%;
    width: 100%;
    object-fit: fill;
    object-position: top center;
}

.content-image {
    display: inline-block;
    width: 100%;
    text-align: center;
    position: relative;



}

img {
    display: inline-block;
    width: 256px;
    margin: 0 auto;
    /* border: 2px solid black; */
    box-shadow: 0 0 10px black inset;
    animation-duration: 2s;
    animation-delay: 4s;
    transition: transform .7s ease-in-out;
}

.img:hover {
    transform: rotate(360deg);
    border: none;
    box-shadow: 0 0 10px black inset;
}

@media only screen and (max-width: 767px) {
    img {
        width: 100%;
    }
}

/* Back to Top Button Styling */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    /* Orange background */
    color: #ffffff;
    /* White text */
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    text-decoration: none;
    display: none;
}