@font-face {
    font-family: 'Inter';
    src: url("../fonts/Inter-VariableFont_slnt\,wght.ttf");
}

html{
    height: 100%;
    overflow: hidden;
}
body{
    height: 100%;
    background-color: black;

    font-family: 'Inter';
    color: white;
    font-weight: 300;
    font-size: 24px;

    display: flex;
    align-items: center;
    justify-content: center;
}
.docbox_main_part{
    padding: 0 150px;
}
.docbox_logo_part{
    padding: 0 30px;
}
.docbox_logo_part > div:first-child{
    width: 593px;
    height: 130px;

    background-repeat: no-repeat;
    background-position: center;
    background-image: url(./img/Logo.svg);
}
.docbox_logo_part > div:nth-child(2){
    width: 100%;
    font-size: 32px;
    line-height: 39px;
    letter-spacing: 7px;
}

.docbox_contact_part{
    margin-top: 70px;
    padding-top: 70px;

    border-top: solid 1px white;

    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.docbox_contact_part > .docbox_contacts{
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    width: 100%;
}
.docbox_contact_part > .docbox_contacts > div{
    line-height: 29px;
    padding-left: 34px;

    background-position: left;
    background-repeat: no-repeat;
}
.docbox_contact_part > .docbox_contacts > .docbox_phone_contact{
    background-image: url(./img/Phone.svg);
}
.docbox_contact_part > .docbox_contacts > .docbox_mail_contact{
    background-image: url(./img/Mail.svg);
}


@media screen and (max-width: 900px) {
    .docbox_logo_part > div:first-child{
        width: 300px;
        height: auto !important;
        aspect-ratio: 593/130;
        background-size: 300px;
    }
    .docbox_logo_part > div:nth-child(2){
        font-size: 17px;
        letter-spacing: 3px;
        line-height: 22px;
    }

    .docbox_contact_part{
        margin-top: 40px;
        padding-top: 40px;

        font-size: 16px;
    }
}
@media screen and (max-width: 400px) {
    .docbox_main_part{
        width: 100%;
        padding: 0;
        margin: 0 20px;
    }

    .docbox_logo_part > div:first-child{
        width: 230px;
        background-size: 230px;
    }
    .docbox_logo_part > div:nth-child(2){
        width: 100%;
        font-size: 13px;
        letter-spacing: 3px;
        line-height: 19px;
    }

    .docbox_contact_part_text{
        padding: 0 15px;
        border-bottom: solid 0.5px white;
    }
    .docbox_contact_part{
        font-size: 14px;
        border: none;
    }
    .docbox_contact_part > .docbox_contacts{
        margin-top: 10px;

        flex-direction: column;
        align-items: center;
    }
}