* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Arial', sans-serif;
background-color: #000;
color: #fff;
text-align: center;
line-height: 1.5;
}

/* Header */
.header {
margin-top: 2rem;
}

.header h1 {
font-size: 3rem;
font-weight: bold;
letter-spacing: 2px;
margin-bottom: 1rem;
font-family: cursive;
}

.header a{
text-decoration: none;
color: #fff;
}

.navigation {
margin-top: 1rem;
}

.navigation a {
color: whitesmoke;
text-decoration: none;
margin: 0 1rem;
font-size: 19px;
font-weight: 300;
letter-spacing: 1px;
transition: color 0.3s;
padding-right: -2px;
}

.navigation a:hover {
color: #00ffff;
}


/* Mobile Navigation */
.mobile-nav {
display: none;
position: relative;
}

.hamburger {
position: relative;
width: 30px;
height: 20px;
border: none;
background: none;
cursor: pointer;
display: flex;
flex-direction: column;
justify-content: space-between;
z-index: 11;
}

.hamburger span {
display: block;
width: 100%;
height: 2px;
background-color: #413c3c;
border-radius: 4px;
transition: all 0.4s ease;
}

.hamburger.active span:nth-child(1) {
transform: rotate(45deg);
position: absolute;
top: 10px;
}

.hamburger.active span:nth-child(2) {
opacity: 0;
/* Hide the middle bar */
}

.hamburger.active span:nth-child(3) {
transform: rotate(-45deg);
position: absolute;
top: 10px;
}

.mobile-menu {
display: flex;
flex-direction: column;
position: fixed;
top: 0;
right: -100%;
width: 100%;
height: 40%;
background-color: rgba(0, 0, 0,0.84);
padding: 1rem;
text-align: center;
z-index: 10;
transition: right 0.4s ease;
}

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

.mobile-menu a {
text-decoration: none;
color: #8f108f;
  font-family: monospace;
font-size: 22px;
font-weight: bold;
margin-bottom: 10px;
}

.mobile-menu a:hover {
color: aqua;
}
.mobile-nav.active .mobile-menu {
display: flex;
}

/* Hero Section */
.hero {
margin: 3rem auto;
}

.hero img {
max-width: 90%;
width: 500px;
height: auto;
border: 2px solid aqua;
border-radius: 10px;
box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
}

/* Footer with Social Icons */
.socials {
margin-top: 3rem;
padding-bottom: 2rem;
}

.socials a {
color: #fff;
margin: 0 0.5rem;
font-size: 1.8rem;
transition: color 0.3s;
}

.socials a:hover {
color: #00ffff;
}

/* Responsive Design */
@media (max-width: 768px) {
.header h1 {
font-size: 2.5rem;
}

.navigation a {
font-size: 1rem;
margin: 0 0.5rem;
}

header .navigation {
display: none;
}

.mobile-nav {
display: block;
}

.hamburger {
font-size: 1.8rem;
background: none;
border: none;
color: rgb(250, 231, 231);
cursor: pointer;
position: absolute;
top: -80px;
right: 11px;
}


.hero img {
max-width: 100%;
width: 350px;
}

.socials a {
font-size: 1.5rem;
}
}

@media (max-width: 480px) {
.header h1 {
font-size: 2rem;
}

.navigation a {
font-size: 0.9rem;
}

header .navigation {
display: none;
}

.mobile-nav {
display: block;
}

.hamburger {
font-size: 1.8rem;
background: none;
border: none;
color: rgb(250, 231, 231);
cursor: pointer;
position: absolute;
top: -80px;
right: 11px;
}

.hero img {
width: 300px;
}

.socials a {
font-size: 1.3rem;
}
}
