Spaces:
Running
Running
/* General Body Styling */ | |
body { | |
font-family: 'Poppins', sans-serif; | |
margin: 0; | |
padding: 0; | |
background: linear-gradient(135deg, #141e30, #243b55); | |
color: #ffffff; | |
} | |
/* Container for All Content */ | |
.container { | |
width: 90%; | |
max-width: 1200px; | |
margin: 0 auto; | |
} | |
/* Header */ | |
header { | |
text-align: center; | |
padding: 40px 20px; | |
background: #1c2833; | |
border-bottom: 4px solid #0d7377; | |
} | |
header h1 { | |
font-size: 2.5rem; | |
margin: 0; | |
color: #14ffec; | |
} | |
/* Navigation Bar */ | |
nav { | |
display: flex; | |
justify-content: center; | |
gap: 20px; | |
background: #0d7377; | |
padding: 15px 0; | |
} | |
nav ul { | |
list-style: none; | |
display: flex; | |
gap: 20px; | |
padding: 0; | |
margin: 0; | |
} | |
nav ul li a { | |
text-decoration: none; | |
font-weight: bold; | |
color: #ffffff; | |
padding: 10px 15px; | |
border-radius: 5px; | |
transition: background 0.3s, transform 0.3s; | |
} | |
nav ul li a:hover { | |
background: #14ffec; | |
color: #000; | |
transform: scale(1.1); | |
} | |
/* Main Content */ | |
main { | |
margin: 30px 0; | |
} | |
section { | |
margin-bottom: 30px; | |
padding: 20px; | |
background: #1c2833; | |
border-radius: 10px; | |
box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3); | |
} | |
section h2 { | |
font-size: 1.8rem; | |
color: #14ffec; | |
margin-bottom: 10px; | |
} | |
section p { | |
font-size: 1rem; | |
line-height: 1.6; | |
color: #dcdcdc; | |
} | |
/* Download Buttons */ | |
button { | |
display: inline-block; | |
background: #14ffec; | |
color: #000; | |
padding: 12px 20px; | |
border: none; | |
border-radius: 5px; | |
font-size: 1rem; | |
font-weight: bold; | |
cursor: pointer; | |
margin-top: 15px; | |
transition: background 0.3s, transform 0.3s; | |
} | |
button:hover { | |
background: #32e0c4; | |
transform: scale(1.1); | |
} | |
/* Footer */ | |
footer { | |
text-align: center; | |
padding: 20px; | |
background: #0d7377; | |
margin-top: 20px; | |
} | |
footer p { | |
margin: 0; | |
color: #dcdcdc; | |
font-size: 0.9rem; | |
} |