html {
    margin: 0px;
    height: 100%;
    width: 100%;
}
body {
    margin: 0px;
    min-height: 100%;
    width: 100%;
    background: rgb(51, 2, 67);
    background-attachment: fixed;
}
.brightHeader {
    background-repeat: no-repeat;
    background: rgb(94,11,127);
}
a {
    color: white;
}
@keyframes popIn {
    from {opacity: 0; top: 200px}
    to {opacity: 1;  top: 0}
  }

.mainScreenshot {
    animation-name: popIn;
    animation-duration: 1s;
}
.bottbarcol {
    background-color: #0000004c;
}
* {
    box-sizing: border-box;
   }
   *:before,
   *:after {
    box-sizing: border-box;
   }
   html,
   body {
    height: 100%;
    position: relative;
   }
   .main-container {
    min-height: 100vh; /* will cover the 100% of viewport */
    overflow: hidden;
    display: block;
    position: relative;
    padding-bottom: 100px; /* height of your footer */
   }
   footer {
    position: absolute;
    bottom: 0;
    width: 100%;
   }