77 lines
970 B
CSS
77 lines
970 B
CSS
:root {
|
|||
|
|
--secondary-color: #ff6700 /* Rot */
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
@font-face {
|
||
|
|
font-family: Geist-Bold;
|
||
|
|
src: url(/fonts/Geist-Bold.ttf);
|
||
|
|
}
|
||
|
|
|
||
|
|
@font-face {
|
||
|
|
font-family: Geist-Medium;
|
||
|
|
src: url(/fonts/Geist-Medium.ttf);
|
||
|
|
}
|
||
|
|
|
||
|
|
*{
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
font-family: Geist-Bold;
|
||
|
|
font-weight: 100;
|
||
|
|
color: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
::selection {
|
||
|
|
background: transparent;
|
||
|
|
color: #8D19FF;
|
||
|
|
text-shadow: none !important;
|
||
|
|
animation: none !important;
|
||
|
|
transition: none !important;
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
body{
|
||
|
|
background-color: black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.imprint{
|
||
|
|
width: 94%;
|
||
|
|
max-width: 1500px;
|
||
|
|
margin: auto;
|
||
|
|
margin-top: 20vh;
|
||
|
|
|
||
|
|
height: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.imprint p.big{
|
||
|
|
font-size: 1.5em;
|
||
|
|
}
|
||
|
|
|
||
|
|
h2{
|
||
|
|
font-size: 3em;
|
||
|
|
line-height: 83%;
|
||
|
|
padding-bottom: 1%;
|
||
|
|
}
|
||
|
|
|
||
|
|
h3{
|
||
|
|
padding-bottom: 5%;
|
||
|
|
}
|
||
|
|
|
||
|
|
h4{
|
||
|
|
padding-top: 5%;
|
||
|
|
font-size: 2em;
|
||
|
|
padding-bottom: 1%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.text{
|
||
|
|
padding-bottom: 20%;
|
||
|
|
}
|
||
|
|
|
||
|
|
a#back-home{
|
||
|
|
font-size: 2em;
|
||
|
|
text-decoration: none;
|
||
|
|
|
||
|
|
}
|