/*
Maintenance page by Wild Creative Studio (Vincent Jeannot)
WEAREWILD.LU
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'VT323', monospace;
    background: #000;
}

.m-wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.m-background {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-image: url("glitch-overlay.gif");
    opacity: .2;
}

.m-content {
    position: relative;
    width: 90%;
    max-width: 700px;
    color: #fff;
    text-align: center;
    z-index: 5;
    margin-bottom: 50px;
}

.m-title {
    font-size: 75px;
    text-transform: uppercase;
    line-height: 0.8em;
}

.m-description {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.2; 
}

.m-message {
    margin-top: 20px;
    font-size: 18px;
    color: #fff;
    opacity: .5;
    line-height: 1.2; 
}

.m-wild-logo {
    display: block;
    width: 150px;
    opacity: .8;
    transition: opacity .3s ease;
    -webkit-transition: opacity .3s ease;
    -moz-transition: opacity .3s ease;
    -ms-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
}

.m-wild-logo:hover {
    opacity: 1;
}

.m-footer {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;   
}

@media screen and (max-width: 768px) {
    .m-title {
        font-size: 65px;
    }
}