*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html{
    color: #ffffff;
}
body{
    padding: 25px;
    background-color: #1029b1;
    overflow: hidden;
    display: flex;
    justify-content: center;
    height: 100vh;
}
h1, h2, h3, a, button, p, input{
    font-family: "input-mono", monospace;
    font-weight: 400;
    font-style: normal;
}
#formulaire, #page2{
    margin: auto;
    text-align: center;
    z-index: 10;
}
#page2 {
    display: none;
}
#artwork{
    max-width: 250px;
    box-shadow: rgba(0, 0, 0, 0.26) 0px 1px 4px;
    margin: 15px;
}
button, a{
    color: #ffffff;
    background: none;
    text-decoration: none;
    border: none;
}
input{
    color: #ffffff;
    background: none;
    border: solid 2px #ffffff;
}
input, button{
    width: 100%;
}
input[type="text"], input[type="number"], textarea{
    font-size: 16px;
}
a{
    padding: 4px 15px;
}
a:hover{
    border: solid 2px #ffffff;
    cursor: pointer;
}
.pixel {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #ffffff;
  opacity: 0.7;
  animation: glitch 1s infinite;
}
@keyframes glitch {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}
#background {
  font-family: "input-mono", monospace;
  font-weight: 400;
  font-style: normal;
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  color: #ffffff;
  font-size: 14px;
  line-height: 18px;
  white-space: pre-wrap;
  overflow: hidden;
  opacity: 0.3;
  z-index: 1;
  padding: 10px;
  animation: flicker 2s infinite;
}
/* Flicker effect like an old monitor */
@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 0.3; }
  20%, 24%, 55% { opacity: 0.15; }
}
@media only screen and (max-width: 500px) {
    
}