body {
    background-color: #000;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-family: monospace;
    /*font-weight: bold;*/
    font-size: 16px;
    color: #cfcfcf;
    text-shadow: 1px 1px 1px rgba(0,0,0,1), 1px 1px 1px rgba(0,0,0,1);
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

pre, p {
    text-align: center;
    font-family: monospace;
}

a {
    color: inherit;
    text-decoration: none;
}

#center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translate(-50%, -50%);
    background-size: cover;
    -webkit-filter: blur(125px);
    -moz-filter: blur(125px);
    -o-filter: blur(125px);
    -ms-filter: blur(125px);
    filter: blur(0px);
}

#canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.header-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #000;
    z-index: 1;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
}

.header-content {
    text-align: center;
    padding: 10px;
    font-family: monospace;
    font-size: 14px;
    text-shadow: 1px 1px 1px rgba(0,0,0,1);
    color: #cfcfcf;
}

.footer-bg {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #000;
    z-index: 1;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
}

.footer-content {
    text-align: center;
    padding: 10px;
    font-family: monospace;
    font-size: 14px;
    text-shadow: 1px 1px 1px rgba(0,0,0,1);
    color: #cfcfcf;
}

#jslicense-labels1 {
    display: none;
}

/* Blog Box Styles */
.blog-box {
    width: 80%;
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    color: #cfcfcf;
    background-color: #1a1a1a;
    text-align: left;
    overflow-wrap: break-word;
}

.blog-title {
    text-align: left;
    font-size: 24px;
    margin-bottom: 10px;
    color: #cfcfcf;
}

.blog-content {
    text-align: left;
    font-size: 16px;
    color: #999;
    margin-bottom: 15px;
}

.blog-box:first-of-type {
    margin-top: 100px;
}

.blog-box:last-of-type {
    margin-bottom: 100px;
}
