* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    padding: 0;
    margin: 0;
}
#maintenance {
    position: relative;
    height: 100vh;
}
#maintenance .maintenance {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.maintenance {
    max-width: 710px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    line-height: 1.4;
}
.maintenance h2 {
    font-family: raleway, sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-align: center;
    margin-top: 0;
    color: #292929;
}
.maintenance p {
    font-family: raleway, sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
}
@media only screen and (max-width: 480px) {
    .maintenance {
        text-align: center;
        padding-left: 15px;
        padding-right: 15px;
    }
}
