<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: 'FranklinGothic';
  src: url('fonts/franklin-gothic.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  background-color: #0000FF;
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  text-align: center;
  color: white;
}

.logo {
  width: auto;
  font-size: 35px;
  margin-bottom: 2px;
  line-height: normal;
  padding-bottom:0px;
  animation: slideIn 2s ease-out forwards;
  transform: translateX(-100vw);
}

@keyframes slideIn {
  to {
    transform: translateX(0);
  }
}

.message {
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  color: white;
  padding: 0px;
  margin: 0px;
  opacity: 0;
  transition: opacity 1s ease-in;
  transition-delay: 2s;
  animation: fadeIn 1s ease-in 2s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
</pre></body></html>