@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500&display=swap');

html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    font-family: 'Roboto', sans-serif;
    background-color: #F5F7FA;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    list-style-type: none;
    display: flex;
    flex-direction: column;
}
header, 
main {
    width: 100%;
    max-width: 85vw;
    margin: 0 auto;
}
main {
    margin-bottom: 4em;
}
p {
    font-size: 16px;
    color: black;
}
a {
    font-weight: 500;
    color: #0D47A1;
    letter-spacing: 0.03em;
    text-decoration: none;
}
.header {
    min-height: 15vh;
    margin: 0 auto 1em auto;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #C8E1FF;
}
.header h2 {
    color: #2C2E2F;
    font-style: normal;
    font-weight: 300;
    font-size: 48px;
    line-height: 130%;
    letter-spacing: -0.01em;
    margin-left: auto;
}
.document-list {
    padding: 0;
    margin: 2.5em auto;
    text-align: left;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.document-list-left {
    order: 1;
}
.document-list-right {
    order: 2;
}
.document-list > ul > li {
    width: 30vw;
}
.document-list__item {
    display: block;
    margin: 0.5em 0;
    background: #FFFFFF;
    border-radius: 3px;
    border: 0.2px solid #0D47A1;
}
.document-list__item a {
    display: block;
    padding: 1em;
    font-size: 18px;
}
.document-list__item:hover {
    background-color: #F1F8FF;
}
.link {
    font-size: 16px;
    line-height: 24px;
}
.link:hover {
    text-decoration: underline;
}
footer {
    background-color: #0D47A1;
    margin-top: auto;
}
.footer {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.footer__contact {
    color: white;
    font-weight: normal;
    font-size: 0.9em;
}
.footer__copywright {
    color: white;
    font-size: 0.9em;
    margin-left: auto;
}

/* tablet */
@media screen and (max-width: 1199px) {
    header,
    main {
        width: 95%;
    }
    .header h2 {
        font-size: 33px;
    }
    .header img {
        width: 114.75px;
    }
    .footer {
        max-width: 95vw;
    }
}

/* mobile */
@media screen and (max-width: 599px) {
    .header h2 {
        font-size: 25px;
        text-align: right;
        padding-left: 1em;
    }
    .header img {
        content: url('../images/logo_piktogram.svg');
        width: 60px;
    }
    main{
        text-align: center;
    }
    .document-list {
        display: block;
        align-content: center;
    }
    .document-list > ul > li {
        width: 60vw;
    }
    .footer__contact {
        margin: 1.5em auto;
    }
    .footer__copywright {
        width: 100%;
        text-align: center;
        margin: 0 auto 1.5em auto;
    }
}