Spaces:
Running
Running
File size: 2,161 Bytes
b31f392 7d2cb44 b31f392 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 |
/* 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);
}
a.download-btn {
display: inline-block;
background: #14ffec;
color: #000;
padding: 12px 20px;
border: none;
border-radius: 5px;
font-size: 1rem;
font-weight: bold;
text-decoration: none;
cursor: pointer;
transition: background 0.3s, transform 0.3s;
}
a.download-btn: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;
} |