You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
925 B
CSS

* {
box-sizing: border-box;
}
:root {
--color: #7D50FF;
--light-color: #CEC6FF;
}
html,
body {
margin: 0;
overflow: hidden;
cursor: none;
}
body {
background-color: white;
}
header {
position: relative;
z-index: 100;
width: 100%;
height: 100vh;
text-align: center;
color: var(--color);
font-family: Arial, Helvetica, sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1 {
font-family: "SI17";
font-size: 64px;
line-height: 0.85;
text-transform: uppercase;
color: var(--light-color); /* Fallback color */
-webkit-text-fill-color: white; /* Will override color (regardless of order) */
-webkit-text-stroke-width: 1.5px;
-webkit-text-stroke-color: white;
}
.date {
font-size: 24px;
}
a {
color: currentColor;
}
.box {
position: absolute;
top: 0;
left: 0;
width: 20vw;
height: 20vw;
background-color: var(--color);
border-radius: 4px;
}