@import url( '../font/roboto.css' );

:root {
    --color-grey: #54595F;
}

* {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    height: auto;
    padding: 42px max( 20px, ( 100% - 1140px ) / 2 ) 0px;
    font-family: 'Roboto', sans-serif;
    max-width: 100%;
    margin: 0;
}

main {
    justify-items: center;
    font-size: 20px;
    text-align: center;

    p {
        max-width: 856px;
        line-height: 1.5;

        br {
            line-height: 1;
        }
    }
}

footer {
    color: var( --color-grey );
    text-align: end;
    padding: 1rem 0;
    margin-top: 200px;
}

img {
    max-width: 100%;
}

h1 {
    color: var( --color-grey );
    font-size: 37px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 80px;
    line-height: 1;
}

p {
    margin: 0;

    &:not( :last-child ) {
        margin-bottom: .9rem;
    }
}

@media ( max-width: 767px ) {
    footer {
        margin-top: 0;
    }

    h1 {
        margin-top: 10px;
        margin-bottom: 30px;
    }
}
