@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
  font-family: "Press Start 2P", serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  color: #fff;
  background-color: #000;
  font-size: clamp(4px, 2vw, 30px);
  line-height: clamp(6px, 3vw, 45px);
}

button { font-family: "Press Start 2P", serif; font-size: 0.9em; }

a {
  text-decoration: underline;
  color: #fff;
} a:hover {
  color: orange;
}

h1 { 
  font-size: 4em;
  line-height: 1em;
  color: orange;
  margin: 1em 0;
}

h1 small {font-size:60%; display: block; color:gold;}

h3 { font-size:1.5em; text-decoration: underline;}

@keyframes blinker {
    from { opacity: 1.0; }
    50% { opacity: 0; }
    to { opacity: 1.0; }
}

/* submit name form */

form { margin-top: 4em}
      
form label { display: block; margin-bottom: 0.25em; }

form button { 
  background-color: orange;
  padding: 0.5em 1em;
  color: #fff;
  border: 0;
} form button:hover {
  box-shadow: 8px 5px #fff;
  color: #fff;
}

form input { 
  font-size: 1em;
  background-color: #000;
  border: 0;
  outline: 0.1em solid #fff;
  color: #fff;
  padding: 0.2em;
  font-weight: bold;
}