2024-08-07 19:33:51 +00:00
|
|
|
@font-face {
|
|
|
|
font-family: 'Px437 IBM BIOS';
|
|
|
|
src: url('Px437_IBM_BIOS.woff2') format('woff2');
|
|
|
|
src: url('Px437_IBM_BIOS.woff' ) format('woff' );
|
|
|
|
font-weight: normal;
|
|
|
|
font-style: normal;
|
|
|
|
font-display: swap;
|
|
|
|
}
|
|
|
|
|
|
|
|
html,body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-color: black;
|
|
|
|
|
|
|
|
font-family: 'Px437 IBM BIOS';
|
|
|
|
font-size: 2em;
|
|
|
|
color: #8f4dcf;
|
|
|
|
}
|
|
|
|
|
|
|
|
#container {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content {
|
|
|
|
height: max-content;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2024-08-07 21:05:20 +00:00
|
|
|
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
2024-08-07 19:33:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#logo {
|
2024-08-07 21:05:20 +00:00
|
|
|
display: none;
|
2024-08-07 19:33:51 +00:00
|
|
|
margin-right: 1em;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#text {
|
|
|
|
margin: 0;
|
|
|
|
text-wrap: nowrap;
|
|
|
|
}
|
2024-08-07 21:05:20 +00:00
|
|
|
|
|
|
|
@media screen and (min-width: 1200px) {
|
|
|
|
#logo {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|