body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: #1a1a1a;
color: white;
background-image: url("images/tigpaw.png");
}

/* Wrapper */
.wrapper{
width: 70%;
margin: auto;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

nav {
display: flex;
justify-content: space-between;
align-items: center;
background: linear-gradient(#f96714, #481b02);
padding: 15px 20px;
position: relative;
}

.logo img {
height: 50px;
}

.nav-links {
list-style: none;
display: flex;
margin: 0;
}

.nav-links li {
margin-left: 20px;
}

.nav-links a {
color: white;
text-decoration: none;
font-size: 1.2rem;
}

.hamburger {
display: none;
font-size: 30px;
color: white;
cursor: pointer;
}

/* Links Resource */

a:visited
{
	font-family: Verdana, Arial, Sans-Serif;
	font-size: 14pt;
	font-weight: bold;
	text-decoration: none;
	color:#FF7043;
}

	a:link
{
	font-family: Verdana, Arial, Sans-Serif;
	font-size: 14pt;
	font-weight: bold;
	text-decoration: none;
	color:#FF7043;
}


	a:hover
{
	font-family: Verdana, Arial, Sans-Serif;
	font-size: 16pt;
	font-weight: bold;
	text-decoration: none;
	color:#ffffff;
}

/* Navigation */
nav {
display: flex;
justify-content: space-between;
align-items: center;
background-image: linear-gradient(#f96714 20%, #481b02);
padding: 15px 20px;
position: relative;
}

.nav-links {
list-style: none;
display: flex;
}

.nav-links li {
margin: 0 15px;
}

.nav-links a {
text-decoration: none;
color: white;
transition: 0.3s;
}

.nav-links a:hover {
color: black;
}

.hamburger {
display: none;
font-size: 30px;
cursor: pointer;
color: white;
}/* Hero Section */
.hero {
text-align: center;
padding: 100px 20px;
background-image: linear-gradient(#481b02 25%, 75%, #f96714);;
animation: fadeIn 2s ease-in-out;
}

.hero h1 {
font-size: 50px;
margin: 0;
}

.hero p {
font-size: 20px;
opacity: 0.8;
}

/* Content */
.content {
text-align: justify;
padding: 50px 30px;
background-color: #1a1a1a;
}

/* Footer */
footer {
text-align: center;
padding: 20px;
background-color: #000;
}

/* Animations */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}


/* Responsive */
@media (max-width: 768px) {
.nav-links {
display: none;
flex-direction: column;
position: absolute;
top: 60px;
right: 20px;
background: #ff6a00;
width: 70%;
padding: 20px;
border-radius: 10px;
}

.nav-links.active {
display: flex;
}

.hamburger {
display: block;
}

.nav-links li {
margin: 10px 0;
}
}