/* STYLE SHEET FOR DONT TOUCH THE BUTTON */

body {
 text-align: center;
 font-family: 'Nosifer', sans-serif;
 background-color: black;
 color: white;
}

.error-screen {
  position: fixed;
  inset: 0; 
  background-color: #111;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center; 
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  z-index: 20;
  padding: 20px;
  gap: 1rem; 
}

.error-screen img {
  margin-top: 10px;
  max-width: 300px;
  width: 80vw;
  border-radius: 10px;
}

/* Tablets */
@media (max-width: 768px) {
  .error-screen {
    font-size: 2rem;
    padding: 15px;
  }

  .error-screen div {
    font-size: 1.2rem;
    margin-top: 10px;
  }

  .error-screen img {
    max-width: 250px;
  }
}

/*  Mobiles */
@media (max-width: 480px) {
  .error-screen {
    font-size: 1.6rem;
    line-height: 1.4;
    padding: 10px;
  }

  .error-screen div {
    font-size: 1rem;
    margin-top: 8px;
  }

  .error-screen img {
    max-width: 180px;
    width: 70vw;
  }
}