body {
    background: url("./img/under-construction.jpg") no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    background-repeat: no-repeat;
}

.card {
    background: #000;
    filter: alpha(opacity=70);
    filter: progid: DXImageTransform.Microsoft.Alpha(opacity=70);
    opacity: 0.7;
    -moz-opacity: 0.7;
    zoom: 1;
}

.card-body {
    background: #000;
    filter: alpha(opacity=70);
    filter: progid: DXImageTransform.Microsoft.Alpha(opacity=70);
    opacity: 1;
    -moz-opacity: 0.7;
    zoom: 1;
    color: #000000;
    text-align: center;
}

img.logo {
    height: 70px;
    display: block;
    margin: auto;
}

h1 {
    font-size: 40px;
    font-weight: normal;
}

p.weMade {
    font-size: 19px;
}

div.adress {
    margin: 30px 0;
}

p.copy {
    font-size: 12px;
    text-align: right;
}

div.animate {
    opacity: 0;
    animation-name: gorun;
    animation-delay: 0.2s;
    animation-duration: 1.2s;
    animation-fill-mode: forwards;
}

p {
    margin: 0;
}

@media (max-width: 990px) {
    img.skyneb {
        height: 80px;
    }
    h1 {
        font-size: 35px;
    }
    div.animate {
        margin-bottom: 50px;
    }
}

@keyframes gorun {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}