@font-face {
  font-family: 'VT323 Regular';
  src: url('/fonts/VT323Regular.eot'); 
  src: url('/fonts/VT323Regular.eot?#iefix') format('embedded-opentype'), 
       url('/fonts/VT323Regular.woff2') format('woff2'), 
       url('/fonts/VT323Regular.woff') format('woff'), 
       url('/fonts/VT323Regular.ttf') format('truetype'), 
       url('/fonts/VT323Regular.svg#svgVT323Regular') format('svg');
}

::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-track {
    background-color: none;
}
::-webkit-scrollbar-thumb {
    background-color: #ffffff;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #00ff04;
}

a:visited, a:link {
  color: #06b841;
  text-decoration: none;
}

html {
  background-image: url("/backgrounds/stars.gif");
  background-size: auto 128px;
  background-repeat: repeat;
  background-color: #000000;
  background-attachment: fixed;
  color: #ffffff;
  font-family: 'VT323 Regular', monospace;
  font-size: 20px;
  cursor: url("/images/cursor2.png"), auto;
  margin-left: 150px;
  margin-right: 20px;
}

/* ========== MOVED CSS FROM HTML ========== */

input[type="text"] {
  width: 200px;
  box-sizing: border-box;
  border: solid;
  border-width: 1px;
  background-color: #000000;
  color: #00ff04;
}

::placeholder {
  color: #00ff04;
  opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12 -18 */
  color: #00ff04;
}
.navbar {
  z-index: 5;
  position: absolute;
  height: auto;
  left: 240px;
  top: 650px;
  overflow: hidden;
}
.monitor {
  position: absolute;
  left: 0px;
  top: 0px;
}
.header {
  font-size: 50px;
}
.artwork {
  position: absolute;
  height: 500px;
  width: 520px;
  left: 100px;
  top: 130px;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 40px;
  padding: 4px;
}
.artwork-content {
  background-image: url(/images/scanlines.gif);
  background-blend-mode: darken;
  background-color: rgba(0, 26, 48, 0.616);
  margin-left: 1%;
  margin-right: 1%;
  padding: 1%;
  border-color: #fff;
  border-width: 4px;
  border-style: solid;
  border-top: none;
  border-radius: 0px 0px 10px 10px;
  font-size: 20px;
}
.artwork-title {
  font-size: 30px;
  text-align: center;
  color: #000000;
  background-color: #ffffff;
  border-bottom: 5px #000 solid;
  margin-left: 8%;
  margin-right: 8%;
  text-align: left;
}
details > summary {
  background-color: rgb(255, 255, 255);
  color: #000000;
  padding-left: 20px;
  border-radius: 10px 10px 0px 0px;
    
}
details[open] > summary {
  background-color: rgb(255, 255, 255);
  color: #000000;
  padding-left: 20px;
  border-radius: 10px 10px 0px 0px;
}
/* Draggable Frame */
#draggableFrame {
  position: fixed;
  top: 6px;
  left: 120px;
  width: 210px;
  height: 330px;
  background: rgba(255, 255, 255, 0.8);
  border-image: linear-gradient(to bottom, #b7cfe8, #9bb7d3) 1;
  border-radius: 6px;
  border-width: 4px;
  border-style: solid;
  border-top: none;
  cursor: grab;
  z-index: 1000;
  user-select: none; /* Prevent text selection */
  display: flex;
  flex-direction: column;
}

/* Drag Handle */
#dragHandle {
  width: 100%;
  height: 20px;
  background-image: url("/backgrounds/win7gradient.png");
  color: #000000;
  text-align: left;
  font-size: 14px;
  line-height: 20px;
  cursor: grab;
  padding: 2px;
}

/* Make sure the iframe fits inside */
#draggableFrame iframe {
  width: 100%;
  height: calc(100% - 20px); /* Subtract handle height */
  border: none;
}

/* Prevent selection of other page elements */
body, html {
  user-select: none;
}