mirror of
https://github.com/Lil-Carpi/LDM-ASIR.git
synced 2025-12-06 00:03:48 +00:00
35 lines
608 B
CSS
35 lines
608 B
CSS
*
|
|
{
|
|
padding: 0;
|
|
margin: 0;
|
|
box-sizing: border-box;
|
|
list-style: none;
|
|
text-decoration: none;
|
|
}
|
|
body
|
|
{
|
|
font-family: 'Manjari', sans-serif;
|
|
background-color: linear-gradient(135deg, #0f172a, #1e293b);
|
|
color: white;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.content
|
|
{
|
|
padding-top: 8rem;
|
|
padding-bottom: 12rem;
|
|
max-width: 1400px;
|
|
margin: 0 auto;
|
|
width: 100%;
|
|
}
|
|
|
|
.sectionTitle
|
|
{
|
|
text-align: center;
|
|
font-size: 2rem;
|
|
margin-bottom: 3rem;
|
|
color: #00c3ff;
|
|
text-transform: uppercase;
|
|
letter-spacing: 2px;
|
|
text-shadow: 0 0 15px rgba(0, 195, 255, 0.6);
|
|
} |