* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

/* Navigation Bar Styles */
.navbar {
    background-color: dimgrey;
    margin: 5px;
    padding: 0 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 5px;
    z-index: 1000;
    border-radius: 10px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo {
    border-radius: 5px;    
    display: flex;
    align-items: center;
    padding: 5px;
}

.logo:hover{
    background-color: #ffa64c;
}


.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 25px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffa64c;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffa64c;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
}

/* Main Content Styles */
.container {
}

.container a img{
   display: block;
   height: auto;
}

.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffa64c, #2c3e50);
    color: white;
    border-radius: 10px;
    margin: 0 5px 5px 5px;
	
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    max-width: 700px;

}

.btn {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #c0392b;
}

.content-section {
    display: flex;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    justify-content: center;
}

.content-section h2 {
    color: #2c3e50;
    font-size: 32px;
}

.content-section p {

    font-size: 18px;
}

/* Footer Styles */
footer {
    background-color: dimgrey;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin: 5px 5px 5px 5px;
    border-radius: 10px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background-color: #2c3e50;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        margin: 15px 0;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }
}
.homediv{
			display: flex;
			background-color: lightgray;
			border: 5px solid #333;
			border-radius: 1rem;
			align-self: center;
			font-size: 5rem;
			color: #333;
			margin: 1rem auto 1rem auto;
			width: 12rem;
			padding: 1rem;
		}
		.usacenter{
			display: block;
			margin: auto;
			border: 2px solid #333;
			border-radius: 0.5rem;
		}
		.creddiv{
			text-align: center;
			background-color: white;
			border: 5px solid black;
			border-radius: 1rem;
			margin: 0 auto 0 auto;
			padding: 0.5rem;
			width: 40rem;
		}
		.cred{
			height: 150px;
		}




