html {
  position: relative;
  min-height: 100%;
}

body {
  background: url('../pics/portal_back_blur.gif') no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

img.img-circle {
  width: 12%;
  min-width: 100px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  transition: width 0.5s;
}

img.img-circle:hover {
  width: 14%;
}

/* Name */
#name {
  color: #D9D9D9;
  position: fixed;
  top: 25%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 30px;
  font-size: 5vw;
}

#name p {
  margin-top: 25px;
  text-align: center;

  -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 2s; /* Firefox < 16 */
  -ms-animation: fadein 2s; /* Internet Explorer */
  -o-animation: fadein 2s; /* Opera < 12.1 */
  animation: fadein 2s;
}


/* Enter */
#enter {
  color: #D9D9D9;
  font-size: 20px;
  font-size: 2vw;
  position: fixed;
  top: 70%;
  left: 50%;
  transform: translate(-50%,-50%);
  max-width: 244px;
  width: 35vw;
}


/* ANIMATIONS */


@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
