body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 100%;
    margin: auto;
    overflow: hidden;
    flex: 1;
}

header {
    background: black;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    padding: 10px 20px;
}

nav h1 {
    margin: 0;
    text-shadow: #fff;
    color: gold;
}



.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: whitesmoke;
    text-decoration: none;
    letter-spacing: 0.5px;
    position: relative;
    
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background-color: #fff;
    transition: 0.3s linear;
}

.nav-links a:hover::after {
    width: 100%;
    color: blue;
}

.hero {
    background: url('w1.jpg') no-repeat center center/cover;
    color: #fff;
    height: 600px;
    padding: 100px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    background:rgba(0, 0, 0, 0.5);
    padding: 20px;
    color: gold;
    border-radius: 10px;
    height: 300px;
}

.hero h2 {
    font-size: 3em;
    text-align: center;
    justify-content: center;
    margin-bottom: 0px;
    margin-top: 65px;
  
}

.hero h3 {
    font-size: 1.2em;
    margin-top: 5px;
    
}

/* Container styles */
.scrolling-text-container {
    background-color: gray;
    border-radius: 4px;
    overflow: hidden;
}

/* Inner container styles */
.scrolling-text-inner {
    display: flex;
    white-space: nowrap;
    font-size: 20px;
    font-weight: 550;
    padding: 8px 0;
}

/* Text styles */
.scrolling-text {
    display: flex;
}

.scrolling-text-item {
    text-align: right;
    padding: 0 30px;
}

/* Apply the animation to the text items */
.scrolling-text-inner>div {
    animation: var(--direction) var(--marquee-speed) linear infinite;
}

/* Pause the animation when a user hovers over it */
.scrolling-text-container:hover .scrolling-text-inner>div {
    animation-play-state: paused;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    position: relative;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    header {
        text-align: left;
        padding: 1rem;
    }

    footer {
        text-align: center;
    }
}
img {
    float: left;
    margin: 5px;
}
