16 lines
242 B
CSS
16 lines
242 B
CSS
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-image: url("/images/paprika_bg.webp");
|
|
}
|
|
|
|
#logo {
|
|
max-width: max(10vh, 100px);
|
|
}
|
|
|
|
p {
|
|
color: lightcoral;
|
|
text-shadow: black 2px 2px;
|
|
font-size: xxx-large;
|
|
}
|