51 lines
685 B
CSS
51 lines
685 B
CSS
html, body {
|
|
margin: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
background: #000;
|
|
}
|
|
|
|
h1 {
|
|
color: #d3130c ;
|
|
letter-spacing: 3px;
|
|
padding: 40px;
|
|
text-align: center;
|
|
align-items: center;
|
|
text-shadow: 0 0 10px #d3130c;
|
|
}
|
|
|
|
|
|
.contact {
|
|
font-size: 25px;
|
|
text-align: center;
|
|
padding: 40px;
|
|
}
|
|
|
|
|
|
a {
|
|
color: #a34adb;
|
|
text-decoration: none;
|
|
}
|
|
a:hover {
|
|
color: #b72fb5;
|
|
}
|
|
|
|
.bg-ascii {
|
|
position: fixed;
|
|
inset: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
/* padding: 20px; */
|
|
justify-content: center;
|
|
color: #630101;
|
|
user-select: none;
|
|
pointer-events: none;
|
|
}
|
|
.bg-ascii pre {
|
|
margin: 0;
|
|
white-space: pre;
|
|
line-height: 1;
|
|
font-size: 2vw;
|
|
}
|