/*Codeur ROT13*/


.container {
  display: flex;
  justify-content: center;
}

button {
  background-color: #4C8F50; /* Green */
  border: none;
  color: white;
  margin: 10px;
  padding: 10px 15px;
  text-decoration: none;
  font: 1rem Inconsolata, monospace;
  text-shadow: 0 0 5px #C8C8C8;
  cursor: pointer;
}

textarea {
  display: flex;
  justify-content: center;
  max-width: 80%;
  font: 1rem Courrier, monospace;
}

pre {
  margin: 20px;
}

/* Effet tape texte machine à écrire */
	.typewriter h1{
	  overflow: hidden; /* Ensures the content is not revealed until the animation */
	  border-right: .15em solid white; /* The typwriter cursor */
	  white-space: nowrap; /* Keeps the content on a single line */
	  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
	  letter-spacing: .1em; /* Adjust as needed */
	  animation: 
		typing 3.5s steps(30, end),
		blink-caret .5s step-end infinite;
	}

	/* The typing effect */
	@keyframes typing {
	  from { width: 0 }
	  to { width: 100% }
	}

	/* The typewriter cursor effect */
	@keyframes blink-caret {
	  from, to { border-color: transparent }
	  50% { border-color: white }
	}

/* Titre */
h1 {
  font: 2rem Inconsolata, monospace;
  text-shadow: 0 0 5px #C8C8C8;
  text-align: center;
}

/* sous titre */
h2 {
  color: white;
  font: 1.1rem Inconsolata, monospace;
  text-shadow: 0 0 5px #C8C8C8;
  text-align: center;
}

body {
  background-color: black;
  background-image: radial-gradient(
    rgba(0, 150, 0, 0.75), black 120%
  );
  height: 100vh;
  margin: 0;
  overflow: hidden;
  color: white;
  font: 1rem Inconsolata, monospace;
  text-shadow: 0 0 5px #C8C8C8;
  &::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: repeating-linear-gradient(
      0deg,
      rgba(black, 0.15),
      rgba(black, 0.15) 1px,
      transparent 1px,
      transparent 2px
    );
    pointer-events: none;
	}

::selection {
  background: #0080FF;
  text-shadow: none;
}