<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*This section is styling the header and navbar*/

h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 100px;
    margin-left: auto;
    margin-right: auto;
    width: 95%;
}

.wrapper {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #000000;
    width: 100%;
}

.nav {
    width: 35%;
    margin-left: auto;
    margin-right: auto;
}

a:link {
    display: inline;
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    text-decoration: none;
    color: #FFFFFF;
    margin: 5px;
}

a:visited {
    color: #FFFFFF;
}

a:hover {
    color: #00FFFF;
}

a:active {
    font-weight: bold;
}

/*These are the body settings for the home page*/

.home-frame {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
}

.home-frame a {
    color: #000000;
    font-family: Georgia;
    font-size: 18px;
}

.home-frame a:hover {
    color: #00FFFF;
}

.home-frame a:active {
    font-weight: bold;
}

h3 {
    font-family: Georgia;
    font-size: 20px;
}

p {
    font-family: Georgia;
    font-size: 18px;
}

/*These are the body settings for the about page*/

.about-frame {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
}

h2 {
    font-size: 22px;
    font-family: Georgia;
}

.about-frame a {
    color: #000000;
    font-family: Georgia;
    font-size: 18px;
}

.about-frame a:hover {
    color: #00FFFF;
}

.about-frame a:active {
    font-weight: bold;
}

/*These are the body settings for the video page*/

.video-frame {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
}

iframe {
    margin-bottom: 30px;
}

/*These are the body settings for the screenshots page*/

.screen-frame {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
}

.screen-frame img {
    margin-bottom: 30px;
}</pre></body></html>