<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html {
    font-family: Verdana;
}

/* GENERIC BACKGROUND */
body {
    background-image: url("img/pyroland.jpg");
    background-color: grey;
    background-attachment: fixed;
    background-position-y: -64px;
    background-size: cover;
    width: 100%;
    position: absolute;
    top: none;
}

/* SCROLLIN BACKGROUND */
/* body {
    background-color: gray;
    background-image: url("img/stars.png");
    width: 100%;
    position: absolute;
    top: none;
    background-repeat: repeat;
    animation: marquee 120s infinite linear;
} */


@keyframes marquee {
  0% {
    position: 0;
    background-position: 0;
  }

  100% {
    position: -1200px;
    background-position: -1200px;
  }
}

.container {
    background-color: rgba(025,025,025,.5);
    width: 1300px;
    /* center a div insie another div*/
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.content {
    opacity:1;
    width: 1200px;
    background-color:white;
    
    font-size: 14px;
    font-family: courier;
    font-weight: bold;
    color: black;
    align-items: center;
}

.content p {
    padding: 16px;
}

.content h1 {
    padding-top: 64px;
    text-align: center;
    font-family: cambria;
    font-size: 128px;
}
.content h2 {
    padding-top: 64px;
    padding-bottom: 64px;
    font-family: cambria;
    font-size: 32px;
    font-weight: normal;
    text-align: center;
}
.content h3 {
    font-family: cambria;
    font-size: 48px;
    font-weight: normal;
    text-align: center;
}
.content q {
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 42px;
    font-family: times;
    font-size: 24px;
    font-weight: normal;
}

.content li {
    margin-left: 64px;
}

.content img {
    /*display: block;*/
    margin: auto;
    width: 64px;
    /* width: 1200px; */
}

.navbar {
    margin: auto; 
    clear:both;
    background-color: black;
    width: 1300px;
    height: 130px;
}
.navbar .bee img{
    -ms-interpolation-mode: nearest-neighbor;
    image-rendering: -moz-crisp-edges;
    image-rendering: pixelated;
    
    margin: 13px;
    width: 100px;
    height: auto;
    float: left;
}

.fakelink {
    color:blue;
    text-decoration: underline;
}

.fakelink:visited {
    color:blue;
    text-decoration: underline;
}

.navbar .splash{
    margin-top: 18px;
    float: left;
    width: 50%;
}
.navbar .list{
    float: right;
    width: 50%;
}

.navbar .splash h{
    font-size: 52px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 0px #646464;
}
.navbar .splash p{
    margin-top: 6px;
    margin-left: 32px;
    font-size: 12px;
    color: white;
    font-style: italic;
    font-family: helvetica;
}

.navbar .list ul li a {
    margin:12px;

    font-size: 20px;
    font-weight: bold;
    color: rgb(32,190,0);
    text-shadow: 2px 2px 0px #646464;
}
.navbar .list a:hover {
    color:rgb(0,255,0);
}
.navbar .list ul li a:active {
    color:rgb(255, 255, 255);
}
.navbar .list ul { 
    margin: auto; 
    list-style-type: none; 
    text-align: right; 
}
.navbar .list ul li {  
    display: inline; 
}

.copyright {
    color:white;
    font-size: 12px;
    font-weight: bold;
    font-family: courier;
    margin:18px;
    text-align: center;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
</pre></body></html>