27 lines
374 B
CSS
27 lines
374 B
CSS
|
.content {
|
||
|
padding: 5vw;
|
||
|
position: relative;
|
||
|
z-index: 3;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
height: 100vh;
|
||
|
margin: 0;
|
||
|
text-align: center;
|
||
|
color: #999999;
|
||
|
font-size: 5vw;
|
||
|
font-family: Arial;
|
||
|
background-color: black;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
|
||
|
div {
|
||
|
margin-bottom: 2.5vw
|
||
|
}
|
||
|
|
||
|
.pseudo-link {
|
||
|
color: #FF33FF;
|
||
|
}
|