2020-10-07 19:18:42 +02:00
|
|
|
body {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-content: space-between;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
2020-10-07 19:45:50 +02:00
|
|
|
margin: 0;
|
2020-10-07 19:18:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
iframe {
|
|
|
|
position: fixed;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
order: 1;
|
|
|
|
z-index: 1000;
|
|
|
|
width: 100%;
|
|
|
|
font-family: monospace;
|
|
|
|
font-size: 40px;
|
|
|
|
color: aquamarine;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
order: 2;
|
|
|
|
z-index: 1000;
|
|
|
|
width: 100%;
|
|
|
|
font-family: monospace;
|
|
|
|
font-size: 20px;
|
|
|
|
color: aquamarine;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
order: 3;
|
|
|
|
align-self: flex-end;
|
|
|
|
z-index: 1000;
|
|
|
|
width: 100%;
|
|
|
|
font-family: monospace;
|
|
|
|
font-size: 15px;
|
|
|
|
color: aquamarine;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
order: 4;
|
|
|
|
z-index: 1000;
|
|
|
|
font-family: monospace;
|
|
|
|
font-size: 15px;
|
|
|
|
color: red;
|
|
|
|
}
|