html {
    cursor: grab;
}
body {
    /*overflow: hidden;*/
}
#feedback {
    left: 0;
    position: absolute;
    text-align: center;
    font-family: monospace;
    color: #ccc;
    bottom: 3%;
    width: 100%;
}
#container {
    background-color: black;
    top: 0;
    left: 0;
    position: fixed;
    text-align: left;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    z-index: 0;
}

#container span {
        font-size: 18px;
}


@media screen and (max-width: 2560px) {
        #container span {
                font-size: 18px;
        }
}

@media screen and (max-width: 1024px) {
	#container span {
                font-size: 18px;
        }
}

@media screen and (max-width: 768px) {
	#container span {
                font-size: 18px;
        }
}

@media screen and (max-width: 480px) {
	#container span {
                font-size: 18px;
        }
}
a {
    display: inline-block;
    color: red;
    height: 20px;
    vertical-align: bottom;
    text-decoration: none;
    margin-bottom: 2px;
    font-size: 18pt;
}
.line {
    line-height: 20px;
}
.character {
    display: inline-block;
    position: relative;
    width: 18px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #0b0c0e;
    color: #ffffff;
    padding: 0;
}

/* Header Styles */
header {
    /*background-color: #20232Add;*/
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #61dafb;
}

header p {
    font-size: 1.2em;
    color: #ddd;
}

/* Navigation Bar */
nav {
    padding: 15px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 20px;
}

nav a {
    color: #c6daff;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* Main Content */
main {
    position: relative;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    z-index: 1;
}

section {
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(32, 35, 42, 0.5);
    border-radius: 8px;
}

section h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #61dafb;
}

section p, section ul {
    font-size: 1.1em;
    color: #ddd;
}

section ul {
    list-style: square;
    padding-left: 20px;
}

section ul li {
    margin-bottom: 10px;
}

/* Image Styling */
img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Video Styling */
video {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 20px;
    background-color: #20232A;
    border-top: 5px solid #61dafb;
}

footer a {
    color: #61dafb;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer p {
    color: #ccc;
    margin-top: 10px;
}
