@font-face {
    font-family: 'Aktiv-Regular';
    src: url(font/AktivGrotesk-Regular.otf);
}
@font-face {
    font-family: 'Aktiv-Bold';
    src: url(font/AktivGrotesk-Bold.otf);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Aktiv-Regular', sans-serif;
    
}

body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Aktiv-Regular', sans-serif;
    background-color: #1d1e23 !important;
    color: #ddd;
}
main{
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.zd-maintenance-img{
    width: 260px;
    max-width: 260px;
}
.zd-maintenance-img img{
    width: 100%;
}
.zd-text{
    text-align: center;
    padding: 2px 0;
}
.zd-text h3{
    margin-top: 8px;
    font-size: 20px;
    line-height: 1.5;
}
.zd-logo{
    margin-top: -10px;
    width: 280px;
    max-width: 280px;
}
.zd-logo img{
    width: 100%;
}

@media screen and (max-width: 750px) {
    .zd-maintenance-img{
        width: 200px;
        max-width: 200px;
    }
    .zd-logo{
        width: 200px;
        max-width: 200px;
    }
}