<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body{
    height: 100vh;
    width: 100vw;
    background: white url("images/ChipBlue.jpg") ;
    background-size: cover;
    font-family: "Victor Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:"wdth" 120;
    color: #ffffff;
    margin: 0px;
}

html {
    height: 100%;
}

.main {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.title {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-left: 30px;
    margin-right: 30px;
    font-weight: 400;
    font-size: 77px;
    font-family: "Courier Prime",sans-serif
}

.navbar {
    display: flex;
    justify-content: left;
}

@media screen and (max-width: 769px){
    .navbar{
        justify-content: center;
    }
    .logo-image {
        width: 90%;
    }
    .title{
        font-size: 3rem;
    }
    .footer{
        font-size: 0.7rem;
    }
}

.footer {
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 3%;
    font-weight: 500;
}</pre></body></html>