thunderball/assets/css/style.css

65 lines
1.1 KiB
CSS

:root {
--background: #0a0a0a;
--highlight: #fdc500;
--text: #a9d6e5;
}
body {
margin: 0;
padding: 0;
font-family: 'Courier New', monospace;
background-color: var(--background);
color: var(--text);
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.main-content {
max-width: 1000px;
padding: 20px;
}
.ascii-art {
white-space: pre;
font-size: 14px;
line-height: 1.2;
text-align: center;
color: var(--highlight);
margin-bottom: 20px;
}
.links {
text-align: center;
margin-top: 20px;
}
.links a {
color: var(--text);
text-decoration: none;
margin: 0 10px;
transition: color 0.3s ease;
display: inline-block;
}
.links a:hover {
color: var(--highlight);
}
.separator {
content: "•";
display: block;
text-align: center;
margin: 15px auto;
color: var(--highlight);
}
h1 {
color: var(--highlight);
}
.date {
font-style: italic;
color: var(--highlight);
margin-bottom: 20px;
}
.error-message {
text-align: center;
color: var(--text);
margin-top: 20px;
font-size: 1.2em;
}