      html, body {
    background-color: #000; 
    background-image: url(background.jpg); 
     background-repeat: no-repeat; 
    background-position: center;
    height: 100%;
    width: auto;
    background-attachment: fixed;       
    webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover; 
    margin: 0;
    
}   

#wrapper {
min-height: 100%; 
min-width: 100%;
position: fixed; 

}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}

@media only screen and (min-width: 600px) {
.info {
    left: 75%!important;

}
}

@media only screen and (min-width: 500px) {
.info {
    left: 70%!important;
}
}
@media only screen and (min-width: 760px) {
.info {
    left: 80%!important;
}
}


.info {
    color: #6ee0de;
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    
    animation: fadein 3s;
    -moz-animation: fadein 3s; /* Firefox */
    -webkit-animation: fadein 3s; /* Safari and Chrome */
    -o-animation: fadein 3s; /* Opera */
}

@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-moz-keyframes fadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-o-keyframes fadein { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 1;
    }
}

.title {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 22px;
    padding-bottom: 9px;
    margin-bottom: 23px;
    border-bottom: 3px solid #61c3c28f;
}

.ip-address {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    letter-spacing: 5px;
}



/* Mobile */
@media only screen and (max-width: 600px) {
.info {
    color: #6ee0de;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
}