html {
    background-color: rgb(28, 28, 28);
    width: 100%;
    height: 100%;
}

body {
    background-color: rgb(28, 28, 28);
}

.outerDiv{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

#button {
    display: none;
    opacity: 0;
    transition: opacity 3s;
  }

h1, h2, h3, h4, h5, h6, label{
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif!important;
}
p { 
    color:white;
    font-family: Lucida Sans Typewriter, Lucida Console, monaco, Bitstream Vera Sans Mono, monospace; 
    font-size: 14px; 
    font-style: normal; 
    font-variant: normal; 
    font-weight: 400; 
    line-height: 20px; 
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }