mirror of
https://github.com/pacnpal/pacnpal-site.git
synced 2025-12-20 04:21:06 -05:00
33 lines
572 B
CSS
33 lines
572 B
CSS
body {
|
|
font-family: 'Courier New', monospace;
|
|
background: linear-gradient(135deg, #1e1e2f, #1e2f4f);
|
|
color: #fff;
|
|
text-align: center;
|
|
margin: 0;
|
|
}
|
|
header, footer {
|
|
padding: 20px;
|
|
background-color: rgba(30, 30, 47, 0.9);
|
|
}
|
|
h1, h2 {
|
|
color: #ffcc00;
|
|
}
|
|
p {
|
|
font-size: 1.2em;
|
|
}
|
|
section {
|
|
padding: 20px;
|
|
margin: 20px auto;
|
|
max-width: 800px;
|
|
background-color: rgba(30, 30, 47, 0.7);
|
|
border-radius: 8px;
|
|
}
|
|
a {
|
|
color: #7fccff;
|
|
text-decoration: none;
|
|
transition: color 0.3s ease;
|
|
}
|
|
a:hover {
|
|
color: #ffcc00;
|
|
}
|