/* 1) Zorg dat de pagina zelf niet scrolt */
html,
body {
  height: 100%;
  margin: 0;
  overflow: hidden;
}

/* 2) Basis styling */
body {
  color: lime;
  font-family: "courier new", monospace;
  font-size: 18px;
  line-height: 1.6;
  background-color: #050a07;
}

/* 3) Terminal altijd fullscreen in beeld */
.terminal {
  position: fixed;
  inset: 0;

  background-image: url("images/terminal.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  background-color: #050a07;
}

/* 4) Het “glas” waar de tekst is */
.screen {
  position: absolute;

  /* locatie van tekst */
  left: 30%;
  top: 10%;
  width: 72%;
  height: 65%;

  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;

  padding: 18px;
  border-radius: 22px;

  /*  Tekst meer terminal achtig maken */
  background: rgba(0, 0, 0, 0.18);
}

/* Glow op titel */
h1 {
  text-shadow: 0 0 10px lime;
  margin-top: 0;
}

/* Afbeeldingen responsive in je scherm */
img {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
}

/* 5) Scrollbar verbergen, maar wel kunnen scrollen */
.screen {
  scrollbar-width: none;
}
.screen::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* 6) Mobiel scaling */
@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .screen {
    left: auto;
    right: 18%;
    top: 35%;
    width: 50%;
    height: 20%;
    padding: 12px;
  }

  h1 {
    font-size: 34px;
  }

  img {
    max-width: 240px;
  }
}
