@font-face {
    font-family: "AudiType";
    src: url("AudiTypeVF_4.04.woff2") format("woff2-variations"),
    url("AudiTypeVF_4.04.ttf") format("ttf-variations");
    font-weight: 125 950;
    font-stretch: 75% 125%;
    font-style: oblique 0deg 20deg;
}

* {
    box-sizing: border-box;
    color: #1a1a1a;
    line-height: 150%;
}

html, body {
    padding: 0;
    margin: 0;
}

html {
    font-family: "AudiType", Arial, sans-serif;
    font-size: 16px;
}

body {
    background: #ffffff;
    color: #777777;
    margin: 0;
    padding: 0 1rem;
    min-height: 100vh;
    width: 100vw;
    overflow-x: hidden;
}

h1 {
    margin: 0;
    font-size: 1.2rem;
    letter-spacing: -0.03em;
    font-stretch: 130%;
    font-weight: 500;
}

p {
    font-size: 0.7rem;
}

header a {
    display: flex;
    justify-content: center;
}

header a svg {
    width: 24rem;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    max-width: 1500px;
    margin: auto;
}

.row {
    padding: 1rem 0 5rem;
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
    margin-bottom: 2rem;
}

.row .audi-image {
    width: 100%;
    height: 15rem;
    background-image: url("audi_cars.jpg");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.row .text-col {
    width: 100%;
}

.col {
    display: flex;
    flex-direction: column;
}

.copyright {
    text-align: right;
}

.copyright p {
    font-size: .8rem;
    color: #707070;
}

.copyright p span {
    color: inherit;
}

@media screen and (min-width: 600px) {
    .row .audi-image {
        height: 20rem;
    }

    body {
        padding: 0 2rem;
    }
}

@media screen and (min-width: 800px) {
    html {
        font-size: 18px;
    }
}

@media screen and (min-width: 1000px) {
    header a svg {
        width: 28rem;
    }

    .row {
        flex-direction: row;
    }

    .row .audi-image {
        width: 50%;
    }

    .row .text-col {
        width: 50%;
    }
}

@media screen and (min-width: 1200px) {
    html {
        font-size: 20px;
    }
}