You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1008 B
62 lines
1008 B
@font-face {
|
|
font-family: 'Redacted70';
|
|
src: url('../fonts/Redaction_70-Regular.woff2') format('woff2');
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
overflow: hidden;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
canvas {
|
|
display: block;
|
|
}
|
|
|
|
#blocker {
|
|
position:fixed;
|
|
top:0;
|
|
left:0;
|
|
width:100vw;
|
|
height:100vh;
|
|
background:#ffffff;
|
|
background: radial-gradient(circle,rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.9) 100%);
|
|
opacity:1.0;
|
|
z-index:10;
|
|
display:flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 20px;
|
|
transition: opacity 1s ease-out;
|
|
font-family: 'Redacted70';
|
|
}
|
|
|
|
#instructions {
|
|
color:#000000;
|
|
text-align:center;
|
|
position: relative;
|
|
font-size: 40px;
|
|
text-transform: lowercase;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#title {
|
|
color:#fff;
|
|
text-align:center;
|
|
position:relative;
|
|
font-size: 80px;
|
|
letter-spacing: 10px;
|
|
}
|
|
|
|
#title span {
|
|
display: inline-block;
|
|
transition: transform 0s ease-in-out;
|
|
}
|
|
|
|
|
|
iframe {
|
|
width: 100%;
|
|
height: 100%;
|
|
border: none;
|
|
}
|