body{
    display: flex;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-size: 96px;
    font-family: 'Fira Mono', monospace;
    text-align:center;
    background-color:#131313;
}

div.img{
    position: absolute;
    top: 4%;
    opacity: 0.33;
}

.logo {
    max-height: 160px;
}

.custom-text{
    background-color: #101010;
    color: #666;
    border: none;
    font-size: 1rem;
    width: 66%;
    text-align: center;
}

.custom-text::placeholder {
  color: #333 !important;
}

*:focus {
    outline: none;
}

.msg-alerts{ 
     width:100%; 
     overflow:hidden; 
     margin:0 auto; 
     padding:10px; 
} 

.msg{
    width:100%;
    margin:0 0 2rem 0;
}

.ms{ 
    width:100%; 
    margin:auto;  
    padding:.5em; 
    float:right; 
    display:block; 
    margin-bottom:10px;
    font-family: 'Fira Mono', monospace;
    font-weight:100; 
    font-size:16px;
}

.hidden {
    display: none;
}

.err   { background-color:#FFCACA; border:2px #a60202 solid; color:#a60202; border-radius:5px; }
.ok     { background-color:#26ff2C; color:#131313; }
.alert { background-color:#FFFFBF; border:2px #2b2b2b solid; color:#2b2b2b; border-radius:5px; }
.info   { background-color:#B3E7FF; border:2px #018ace solid; color:#018ace; border-radius:5px; }


.button{
  position:relative;
  display:inline-block;
  margin:20px;
}

.button a{
  color:white;
  font-family:Helvetica, sans-serif;
  font-weight:bold;
  font-size:36px;
  text-align: center;
  text-decoration:none;
  background-color:#99182B;
  display:block;
  position:relative;
  padding:20px 40px;
  
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-shadow: 0px 1px 0px #000;
  filter: dropshadow(color=#000, offx=0px, offy=1px);
  
  -webkit-box-shadow:inset 0 1px 0 #454545, 0 10px 0 #771100;
  -moz-box-shadow:inset 0 1px 0 #454545, 0 10px 0 #771100;
  box-shadow:inset 0 1px 0 #454545, 0 10px 0 #771100;
  
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.button a:active{
  top:10px;
  background-color:#990000;
  
  -webkit-box-shadow:inset 0 1px 0 #454545, inset 0 -3px 0 #915100;
  -moz-box-shadow:inset 0 1px 0 #454545, inset 0 -3pxpx 0 #915100;
  box-shadow:inset 0 1px 0 #454545, inset 0 -3px 0 #915100;
}

.button:after{
  content:"";
  height:100%;
  width:100%;
  padding:4px;
  position: absolute;
  bottom:-15px;
  left:-4px;
  z-index:-1;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

button{
    text-decoration:none !important;
}

/* If the screen size is 601px wide or more, set the font-size of <div> to 80px */
@media screen and (min-width: 780px) {
    .glitch {
    font-size: 8rem;
  }
}

/* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
@media screen and (max-width: 900px) {
    .glitch {
        font-size: 3rem;
  }
    .custom-text{
        font-size: 1.2rem;
        width: 80%;
    }
}
