body, html {
  height: 100%;
  background: #010005;
}

a {
  color: white;
  text-decoration: underline;
}
a:hover {
  color: wheat;
}

body {
  font-family: "Raleway", sans-serif;
  color: white;
  display: block;
  margin: 0;
  text-align: center!important;
}

h1 {
  font-size: 6vh;
  color: white;
  font-weight: 400;
  margin: 10px 0;
}

hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 20px 0;
}

.bgimg {
  background-image: url('/laptop.jpg');
  min-height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 700px) {
  .bgimg {
    width: 100%;
    background-position: bottom;
    background-size: contain;
  }
}

.border-grey {
    border-color: #9e9e9e!important;
    margin: auto;
    width: 40%
}

.display-middle {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
}

.animate-opacity {
animation: fadeIn ease 2s;
-webkit-animation: fadeIn ease 2s;
-moz-animation: fadeIn ease 2s;
-o-animation: fadeIn ease 2s;
-ms-animation: fadeIn ease 2s;
}
@keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}

@-moz-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}

@-webkit-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}

@-o-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}

@-ms-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}
}