72 lines
1.3 KiB
Text
72 lines
1.3 KiB
Text
---
|
|
---
|
|
|
|
<div class="wrap">
|
|
<div class="head">Hi, I'm <span class="fancy">Firq</span></div>
|
|
<div class="sub"></ Software dev / Scathach enthusiast / Germany /></div>
|
|
<div class="fade"></div>
|
|
</div>
|
|
|
|
<style>
|
|
.wrap {
|
|
position: relative;
|
|
width: 100%;
|
|
display: flex;
|
|
text-align: center;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
flex-direction: column;
|
|
color: var(--c-lighter);
|
|
background-color: var(--c-darkergray);
|
|
}
|
|
|
|
.fade {
|
|
margin-top: 1.5rem;
|
|
background: linear-gradient(to bottom, transparent, var(--c-lightgray));
|
|
height: 2.5rem;
|
|
width: 100%;
|
|
}
|
|
|
|
.head {
|
|
padding-top: 2rem;
|
|
font-size: 3rem;
|
|
font-weight: 700;
|
|
font-family: 'Work Sans Variable', sans-serif;
|
|
}
|
|
|
|
.sub {
|
|
font-size: 1rem;
|
|
font-weight: 500;
|
|
font-family: 'Work Sans Variable', sans-serif;
|
|
}
|
|
|
|
.fancy {
|
|
color: var(--c-darkpurple);
|
|
}
|
|
|
|
@supports (background-clip: text) {
|
|
.fancy {
|
|
background: linear-gradient(125deg, var(--c-darkpurple), var(--c-purplepink), var(--c-reddish) );
|
|
background-clip: text;
|
|
color: transparent;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 620px) {
|
|
.head {
|
|
font-size: 3rem;
|
|
}
|
|
.sub {
|
|
font-size: 1rem;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1000px) {
|
|
.head {
|
|
font-size: 4rem;
|
|
}
|
|
.sub {
|
|
font-size: 1.25rem;
|
|
}
|
|
}
|
|
</style>
|