/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #000;
  color: #0F0; /* Text color */
  font-family: 'Courier New', monospace;
  margin: 0;
  padding: 0;
  overflow: hidden; /* Hide scrollbar */
}

.screen {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  border: 20px solid #333; /* Border color */
  box-sizing: border-box;
  transform: perspective(1000px) rotateX(15deg);
}

.scanlines {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1) 2px, transparent 2px, transparent 4px);
  pointer-events: none;
}

.curvature {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

/* Additional styles for content on the screen */
.content {
  position: absolute;
  top: 10%;
  left: 10%;
  padding: 20px;
  width: 80%;
  height: 80%;
  overflow: auto;
}

/* Example of text styling */
h1 {
  color: #F00; /* Header text color */
}

p {
  line-height: 1.5;
}

/* Example of link styling */
a {
  color: #0FF; /* Link color */
  text-decoration: underline;
}

a:hover {
  color: #F0F; /* Hover color */
}
