<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&amp;display=swap');

html {
  font-size: 14px;
}

html {
  position: relative;
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Google Sans", sans-serif;
  font-size: 16pt;
}

body {
    margin: 0;
    padding: 0;
}

header .header {
    width: 100dvw;
    height: 40px;
    padding: 15px 30px;
    display: flex;
    flex-direction: row;
    background-color: #13131320;
    top: 0;
    position: fixed;
    z-index: 100;
    transition: background-color .2s ease-out;
}

.header .header-logo {
    background-size: 200px 40px;
    background-repeat: no-repeat;
    background-position: center center;
    width: 200px;
    height: 40px;
    cursor: pointer;
    transition: transform .2s ease-in-out;
}

header .header.solid {
    background-color: #131313CC;
}

.header .header-logo:hover {
    transform: scale(1.01);
}

header .header-logo.black {
    background-image: url(../static/BlackColor.png);
}

header .header-logo.white {
    background-image: url(../static/White.png);
}

.landing-tiles {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: black;
    z-index: 0;
}

.landing-tiles #canvas {
    width: 100%;
    height: 100%;
    transition: opacity 1s ease-out;
    opacity: 0;
    z-index: 0;
}

.landing-cover {
    position: absolute;
    display: flex;
    top: 0;
    height: 78vh;
    width: 100%;
    z-index: 1;
}

.landing-text &gt; div {
    background: radial-gradient(circle, rgba(0,0,0,0.4) 30%, rgba(255,255,255,0) 50%);
}

.landing-text {
    width: max(600px, 80vw);
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.landing-text h6, .landing-text h7, .landing-text h5 {
    font-size: 48pt;
    color: #AAA;
    display: block;
    padding: 0;
    margin: 0;
    line-height: 60px;
    text-shadow: #000 0 0 20px;
    font-weight: normal;
}

.landing-text h5 {
    color: #FFF;
    opacity: 0.95;
    line-height: 80px;
    font-weight: bold;
}

.app-store {
    margin-top: 90px;
    color: #FFF;
    font-size: 18pt;
    text-shadow: #000 0 0 20px;
}

.app-store p {
    margin: 0;
    margin-bottom: 10px;
    font-size: 20pt;
}

.app-store img {
    width: 150px;
}

main  h1, main  h2, main h3, main h4 {
    font-family: 'Lato', 'Google Sans', sans-serif;
    font-weight: 400;
    margin: 50px 70px;
}

main p {
    text-align: justify;
    margin: 5px 0 5px 0;
}

h1 {
    font-size: 36pt;
}

section {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
    gap: 0;
}

.manog-tango {
    color: rgb(255, 118, 19);
}

.sec-1 {
}

.subsec {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: right;
    margin: 50px 20px;
}

.subsec h1, .subsec h2, .subsec h3 {
    margin: 0;
}

.subsec-1 {
    flex: 1;
}

.subsec-2 {
    flex: 1;
}

@font-face {
    src: url(../fonts/GoogleSans-Regular.ttf);
    font-family: "Google Sans";
}

@media (max-width: 1000px) {
    .landing-text h6, .landing-text h5 {
        font-size: 28pt;
        padding: 0 30px;
        margin-top: 10px;
        line-height: 30px;
    }

    .landing-text h7 {
        font-size: 18pt;
        padding: 0 30px;
        line-height: 30px;
    }

    .app-store {
        padding: 0 30px;
    }

    section {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .subsec {
        padding: 10px 30px;
        padding-bottom: 0;
    }

    main h1, main h2, main h3, main h4 {
        margin: 20px 30px;
    }

    .subsec-2 {
    }
}

@media (min-width: 1000px) and (max-width: 1250px) {
    main h1, main h2, main h3, main h4 {
        margin: 20px 30px;
    }

    .subsec {
        padding: 20px 30px;
    }
}

@media (min-width: 768px) {
    .app-store img {
        width: 200px;
    }
}

</pre></body></html>