44 lines
549 B
CSS
44 lines
549 B
CSS
html, body {
|
|
margin: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
background: #000;
|
|
}
|
|
|
|
h1 {
|
|
color: #b2b2b2 ;
|
|
letter-spacing: 3px;
|
|
padding: 80px;
|
|
text-align: center;
|
|
}
|
|
|
|
h1:hover {
|
|
color: white;
|
|
font-size: 50px;
|
|
}
|
|
|
|
a {
|
|
color: #a34adb;
|
|
}
|
|
|
|
|
|
.bg-test {
|
|
position: fixed;
|
|
inset: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
/* padding: 20px; */
|
|
justify-content: center;
|
|
color: #630101;
|
|
user-select: none;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.bg-test pre {
|
|
margin: 0;
|
|
white-space: pre;
|
|
line-height: 1;
|
|
font-size: 2vw;
|
|
}
|