html, body{
    height: 100%;
}

body{
    font-family: 'DINPro', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    background-color: #fff;
    color: #000;
    min-width: 300px;
}

/* Main */
.main{
    min-height: 100vh;
    background-color: #9e9e9e;
    color: #000;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Content */
.content{
    padding: 60px;
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Logo */
.content .logo img {
    width: 207px;
    height: 50px;
}

/* seperator */
.seperator{
    width: 100%;
    height: 2px;
    border-top: 2px dotted black;
    max-width: 675px;
    margin: 85px auto;
}

/* contact */
.contact{
    font-size: 22px;
    line-height: 1.6;
}

.contact a{
    color: inherit;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/*
** RESPONSIVE
*/
@media screen and (max-width: 1024px){
    /* seperator */
    .seperator{
        margin: 65px auto;
    }
    
    /* contact */
    .contact{
        font-size: 20px;
        line-height: 1.5;
    }
}

@media screen and (max-width: 768px){
    /* Logo */
    .content .logo img {
        width: 166px;
        height: 40px;
    }

    /* seperator */
    .seperator{
        margin: 50px auto;
    }

    /* Content */
    .content{
        padding: 40px;
    }

    /* contact */
    .contact{
        font-size: 18px;
        line-height: 1.4;
    }
}

@media screen and (max-width: 405px){
    /* Logo */
    .content .logo img {
        width: 145px;
        height: 35px;
    }

    /* Content */
    .content{
        padding: 25px;
    }

    /* contact */
    .contact{
        font-size: 16px;
        line-height: 1.3;
    }
}