@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-ExtraLight.ttf') format('truetype');
    font-style: normal;
    font-weight: 200;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Regular.ttf') format('truetype');
    font-style: normal;
    font-weight: 400;
}


html, body {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    font-family: Poppins, sans-serif;
    overflow: hidden;
}
.Main {
    background-color: #202328;
    height: 100%;
    width: 100%;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    /*justify-content: space-evenly;*/
    justify-content: space-between;
    align-items: center;
    /*font-size: 16px;*/
    text-align: center;
    position: relative;
    overflow: hidden;
}
.Main:before,
.Main:after {
    content: '';
    display: block;
    width: 2px;
}
.Maintenance {
    color: #f19021;
    font-size: 2.5em;
    margin-bottom: 5px;
}
.Hidden {
    display: none;
}

.InfoText {
    font-size: 1em;
}
.BackShortly {
    font-size: .9em;
}
.TechInfoTip {
    font-size: .7em;
    display: flex;
    align-items: center;
    z-index: 1;
    position: absolute;
    bottom: 5px;
    column-gap: 10px;
    flex-direction: column;
}
.TechInfoTip .Row {
}
.TechInfoTip .Key {
    display: inline-block;
    user-select: all;
}
.TechInfoTip .Value {
    user-select: all;
}

.Logo {
    width: 80%;
    height: 23%;
    background-image: url("images/logo.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.BgLogo {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    height: 40%;
    width: 80%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;

}
.BgLogo img {
    position: relative;
    top: 37%;
    max-height: 100%;
    max-width: 100%;
    margin-left: calc(100px + 15%);

}

.Gears {
    height: 25%;
    width: 40%;
    background-image: url("images/gears.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 1440px) {
    .Main {
        font-size: 13px;
    }
}
@media (max-width: 1280px) {
    .Main {
        font-size: 11px;
    }
    .BgLogo {
        height: 30%;
    }
}
@media (max-width: 640px) {
    .Main {
        font-size: 10px;
    }
}
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait) {
    .Main {
        font-size: 13px;
    }
}
@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape) {
    .Main {
        font-size: 13px;
    }
}
@media all and (device-width: 1366px) and (device-height: 1024px) and (orientation:landscape) {
    .Main {
        font-size: 15px;
    }
}
@media all and (device-width: 1024px) and (device-height: 1366px) and (orientation:portrait) {
    .Main {
        font-size: 15px;
    }
}
