<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
    font-family: 'PPFormula-SemiCondensedExtralight';
    src: url('fonts/PPFormula-SemiCondensedExtralight.ttf') format('truetype');
    font-family: 'PPFraktionMono-Regular';
    src: url('fonts/PPFraktionMono-Regular.ttf') format('truetype');
}

body {
    margin: 0;
    height: 100vh;
    background-color: #000;
    overflow: hidden;
}

canvas {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    image-rendering: -webkit-optimize-contrast;
}

#shader-container {
    position: relative;
    width: 100%;
    height: 100%;
}

#disclaimer {
    position: absolute;
    left: 50%;
    top: 85%;
    transform: translateX(-50%);
    font-family: 'PPFraktionMono-Regular', sans-serif;
    font-size: 14px;
    color: white;
    text-align: center;
    z-index: 10;

}

#logo {
    width: 15%;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}


h1 {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    z-index: 10;
}

#logging {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: red;
    font-family: 'PPFraktionMono-Regular', sans-serif;
    font-feature-settings: 'zero' 1;
    font-size: 14px;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 10;
}

.log-entry {
    display: flex;
    justify-content: space-between;
    width: 230px;
}

.title {
    text-align: left;
}
  
.value {
    text-align: right;
}

.time-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

#clock-container {
    width: 50px;
    height: 50px;
    border: 1px solid red;
    border-radius: 50%;
    margin-top: 10px;
}

#clock-face {
    position: relative;
    width: 100%;
    height: 100%;
}

#clock-hand {
    position: absolute;
    background-color: red;
    width: 1px;
    height: 50%;
    left: 50%;
    bottom: 50%;
    transform-origin: 50% 100%;
}
</pre></body></html>