body {
    font-family: 'Courier New', monospace;
    margin: 0;
    padding: 0;
    background: black;
    color: green;
    /*position:fixed;*/
    overflow-x: hidden;
      /*transform: rotateX(60deg) rotateZ(45deg) scale(0.8);*/
}

.sidebar {
    background: #0f0f0f;
    color: white;
    padding: 20px;
    position: fixed;
    height: 100%;
    overflow-y: auto;
    width: 250px;
}
#movedown{
    padding-left:0px;
    margin-top:70px;
    display: list-item;
    z-index:0;
}
.dropdown {
    position: relative;
    display: block;
}

.dropbtn {
    background-color: #333;
    color: white;
    padding: 16px;
    font-size: 12px;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    left: 0;
    top: 100%;
    
}

.dropdown-content a {
    color: black;
    padding: 5px 5px;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    height:10px;
    /*font-size: 12px;*/
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

main {
    margin-left: 250px;
    /*padding: 20px;*/
    /*background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('scanlines.png');*/
    /*background-size: auto, cover;*/
    /*animation: backgroundScroll 60s linear infinite;*/
}

iframe {
    width: 100%;
    height: calc(100vh - 40px); /* Adjust height as needed */
    border: none;
}

footer {
    background: #0f0f0f;
    color: white;
    text-align: center;
    padding: 10px 20px;
    position: fixed;
    bottom: 0;
    width: calc(100% - 250px); /* Adjust width to match main content */
    left: 250px; /* Adjust to match sidebar width */
}

@keyframes backgroundScroll {
    from { background-position: 0 0; }
    to { background-position: 0 100%; }
}

/* Scanline effect for background */
/* Ensure to create a scanlines.png image with semi-transparent horizontal lines */
