@font-face {
    font-family: 'DK Crayon Crumble';
    src: url('/assets/fonts/DK_Crayon_Crumble.woff2') format('woff2'),
         url('/assets/fonts/DK_Crayon_Crumble.woff') format('woff'),
         url('/assets/fonts/DK_Crayon_Crumble.ttf') format('truetype');
    font-weight: 400;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
}

body {
    font-family: 'DK Crayon Crumble';
    color: #6c6c6c;
}

img {
    width: 100%;
    height: auto;
}

h1 {
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 3px;
    line-height: 1.2;
    margin: 0;
}

.address {
    font-size: 20px;
    letter-spacing: 2px;
}

.address a {
    text-decoration: none;
    color: inherit;
}

h1,
.address {
    text-transform: uppercase;
}

.container {
    text-align: center;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    min-height: 600px;
    max-height: 800px;
}

@media only screen and (min-width: 640px) {
        h1 {
            font-size: 27px;
            letter-spacing: 3px;
        }

        .address {
            font-size: 22px;
        }

        img {
            width: 90%;
        }
}

@media only screen and (min-width: 768px) {
    h1 {
        font-size: 40px;
        letter-spacing: 4px;
    }

    .address {
        font-size: 28px;
    }

    .container {
        min-height: 900px;
    }
}

@media only screen and (min-width: 1280px) {
        h1 {
            font-size: 42px;
            letter-spacing: 5px;
        }

        .container {
            min-height: 800px;
            max-height: 1400px;
        }

        img {
            width: auto;
            height: 480px;
        }
}

@media only screen and (min-width: 1780px) {
    h1 {
        font-size: 50px;
        letter-spacing: 5px;
    }

    .container {
        min-height: 1000px;
    }

    img {
        height: 580px;
    }
}