57 lines
1.0 KiB
SCSS
57 lines
1.0 KiB
SCSS
|
:root {
|
||
|
--black: #0a0908ff;
|
||
|
--chocolate-cosmos: #49111cff;
|
||
|
--white-smoke: #f2f4f3ff;
|
||
|
--beaver: #a9927dff;
|
||
|
--walnut-brown: #5e503fff;
|
||
|
}
|
||
|
|
||
|
* {
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
html,
|
||
|
body {
|
||
|
margin: 0;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
#__nuxt {
|
||
|
height: 100%;
|
||
|
position: relative;
|
||
|
font-family: "Montserrat", sans-serif;
|
||
|
font-optical-sizing: auto;
|
||
|
font-weight: 100;
|
||
|
font-style: normal;
|
||
|
|
||
|
/* background-image: radial-gradient(circle, var(--black), var(--chocolate-cosmos)); */
|
||
|
background-color: var(--black);
|
||
|
background-size: cover;
|
||
|
color: var(--white-smoke);
|
||
|
overflow: hidden;
|
||
|
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
text-align: center;
|
||
|
font-size: 72px;
|
||
|
line-height: 1;
|
||
|
text-transform: uppercase;
|
||
|
font-weight: 500;
|
||
|
background-clip: text;
|
||
|
-webkit-background-clip: text;
|
||
|
-webkit-text-fill-color: transparent;
|
||
|
background-image: linear-gradient(90deg, var(--beaver), var(--walnut-brown));
|
||
|
}
|
||
|
|
||
|
h6 {
|
||
|
color: var(--white-smoke);
|
||
|
font-size: 10px;
|
||
|
line-height: 1;
|
||
|
font-weight: 300;
|
||
|
opacity: 0.7;
|
||
|
}
|