/* Reset and Base Styles */

/* Box sizing reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* HTML and body reset */
html {
    height: 100%;
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.75rem;
    margin-bottom: 0.875rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.625rem;
}

h5 {
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
}

h6 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

p {
    padding: 0;
    margin: 0 0 1rem;
    line-height: 1.3;
}

a {
    color: white;
    text-decoration: underline;
}

a:hover, a:active, a:visited {
    color: white;
}

a.no-underline {
    text-decoration: none;
}

img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

.wrapper {
    width: 100%;
    height: 100%;
    background: url("../img/d-background.jpg") no-repeat center center fixed;
    background-size: cover;
}

.container {
    max-width: 700px;
    padding: 2rem;
    margin: 0 auto;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

.logo {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.tagline {
    width: 100%;
    margin: 0 auto;
}

.content {
    text-wrap: pretty;
}

.doordash {
    max-width: 130px;
    margin: 0 auto;
}

.footer {
    font-size: 0.875rem;
}

@media (min-width: 512px) {
    .logo {
        max-width: 400px;
    }

    .container {
        justify-content: center;
        gap: 2rem;
    }
}