58 lines
935 B
CSS
58 lines
935 B
CSS
@font-face {
|
|
font-family: winky;
|
|
src: url('resources/fonts/WinkyRough-VariableFont_wght.ttf');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: retrowild;
|
|
src: url('resources/fonts/RetroWild.otf');
|
|
}
|
|
|
|
body {
|
|
background-image: url('./resources/bg/page_background.png');
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.logotyp {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
width: 60%;
|
|
}
|
|
|
|
.stopka {
|
|
font-family: retrowild;
|
|
font-size: 350%;
|
|
text-align: center;
|
|
margin-top: auto;
|
|
margin-bottom: 5%;
|
|
}
|
|
|
|
.klik {
|
|
margin-left: 2%;
|
|
margin-right: 2%;
|
|
}
|
|
|
|
.klik:hover {
|
|
color: #687a68;
|
|
}
|
|
|
|
p {
|
|
text-align: left;
|
|
}
|
|
|
|
div {
|
|
padding: 3%;
|
|
text-align: center;
|
|
font-family: winky;
|
|
font-size: 200%;
|
|
text-shadow: 0 0 1px;
|
|
border-radius: 25px;
|
|
border-style: dashed;
|
|
border-width: 10px;
|
|
background-color: #e5d8c3C9;
|
|
margin-top: 10%;
|
|
}
|