/*
Theme Name: Under Construction pagina voor vdberg
Author: ProdaCom
Author URI: https://www.prodacom.nl
*/

@font-face {
    font-family: 'Poppins';
    src: url('Poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Poppins';
    src: url('Poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-weight: 500;
    padding: 0 2rem;
}

html {
    font-size: 18px;
}

h1 {
    font-size: 3rem;
}

main {
    max-width: 1400px;
    min-height: 100vh;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

main > .inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem 8rem;
}

main > footer {
    display: flex;
    margin-top: 4rem;
    color: #979797;
    align-items: flex-start;
    gap: 0rem 4rem;
}

/*main > footer > div {*/
/*    width: 33.33%;*/
/*}*/

main img {
    max-width: 400px;
}

main svg {
    max-width: min(60vw, 700px);
    height: auto;
}

ul {
    list-style-type: none;
    padding: 0;
}

footer strong {
    display: block;
    margin-top: 0.5rem;
}

a {
    color: #f1801f;
}

@media screen and (max-width: 920px) {
    main > .inner, main > footer {
        flex-direction: column;
        align-items: flex-start;
    }

    html {
        font-size: 16px;
    }
}