body {
    font-family: 'Raleway';
    margin: 0;
    padding: 0;
}

.k-konstruct {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100%;
    background-size: cover;
    background-position: center;
}
.k-konstruct::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
}

header {
    top: 0;
    left: 0;
    width: 100%;
    font-size: 18px;
    padding: 10px 0;
}
.top-contacts a {
    color: #fff;
    font-weight: 700;
    margin-left: 15px;
}
.top-contacts address {font-weight: 700;}

.brand {
    background-color: #fff;
    width: 240px;
    margin: 0 auto 30px;
}

.counter {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.counter > div {
    line-height: 1;
    padding: 0 20px;
    font-size: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.counter > div span {
    font-size: 20px;
    color: white;
    margin-top: 10px;
}
#seconds {
    font-size: 50px;
}

@media screen and (max-width: 420px) { 
    .k-konstruct {
        min-height: 100vh;
        height: auto;
        padding: 20px 0 30px;
        flex-direction: column;
    }

    header.position-absolute {
        position: static !important; 
        text-align: center;
    }

    address {
        padding: 0 5%;
    }
    .top-contacts {
        text-align: center !important;
    }


}