/**
	Creator: 6harf.com
**/

/* Maintenance CSS */
html,
body {
    margin: 0;
    min-height: 100%;
    background: #0a0a0a;
}

a {
    font-weight: 600;
    color: white;
    text-decoration: none;
}

.m-logo {
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
}

.m-logo a {
    display: block;
}

.m-text {
    text-align: center;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    margin-top: -150px;
    font-family: "Montserrat", sans-serif;
    color: #fff;
    z-index: 2;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.m-text .title {
    font-size: 150px;
    font-weight: bold;
    position: relative;
}

#video {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    background: #0a0a0a;
}

#video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    pointer-events: none;
    z-index: 1;
}

video#bgvideo {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

@media (max-width: 511px) {
    .m-logo img {
        width: 150px;
    }

    .m-text .title {
        font-size: 60px;
    }
}
