/* Style Settings */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700;800&family=Poppins&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css');

:root {
    --bgColor: #052049;
    --accentColor: #FFFFFF;
    --font: 'Open Sans', sans-serif;
    --firstName: 'My Food Truck App';
    --lastName: 'A Food Trucks Finder App';
    --pink: #f52d56;
    --green: #00FFCE;
}

body {
    background-color: var(--bgColor);
    background-image: url('../images/MFT-Background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-family: var(--font) !important;
}

#userPhoto {
    width: 130px;
    height: 130px;
    display: block;
    margin: 10px auto;
    border-radius: 50%;
}

#userName {
    color: #bbb;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    display: block;
    font-family: var(--font);
    width: 100%;
    text-align: center;
    text-decoration: none;
}

#links {
    max-width: 675px;
    width: auto;
    display: block;
    margin: 10px auto 30px;
}

.link {
    display: block;
    background-color: var(--accentColor);
    color: var(--bgColor);
    font-family: var(--font);
    text-align: center;
    margin-bottom: 20px;
    padding: 17px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all .25s cubic-bezier(.08, .59, .29, .99);
    /* border: solid var(--accentColor) 2px; */
    border-radius: 50px;
    font-weight: 600;
}

.link:hover {
    background-color: var(--pink);
    color: var(--accentColor);
}

h5 {
    text-align: center;
    margin-bottom: 20px;
    color: #E6E6E6;
    font-family: var(--font);
    font-style: italic;
    ;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #E6E6E6;
    font-family: var(--font);
    margin: 0px auto;
}

h2 {
    text-align: center;
    color: var(--accentColor);

}

h3 {
    margin-top: 5px;
    text-align: center;
    color: var(--green);
}

h6 {
    text-align: center;
    margin-bottom: 20px;
    color: rgb(136, 136, 136);
    font-family: var(--font);
}

.atrib {
    text-align: center;
    display: block;
    font-size: 12px;
    margin-bottom: 20px;
    color: rgb(136, 136, 136);
    font-family: var(--font);
    margin-bottom: 20px;
    padding: 17px;
}
.app-store-icons {
    max-height: 60px;
    max-width: 100%;
    margin: 10px 20px !important;
}
@media all and (max-width: 767px) {
    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 18px;
    }

    h3 {
        font-size: 16px;
    }

    body {
        margin: 0 20px;
    }

    #userPhoto {
        width: 60px;
        height: 60px;
    }
}
/* Publishing fixes: accessible focus, alternate app destination and reduced motion. */
.web-app-badge { display: inline-flex; align-items: center; gap: 8px; vertical-align: top; background: #000; border: 1px solid #aaa; color: #fff; border-radius: 8px; height: 60px; box-sizing: border-box; margin: 10px 20px; padding: 5px 12px; text-decoration: none; text-align: left; }
.web-app-badge > span:first-child { font-size: 28px; }
.web-app-badge small { display: block; font-size: 10px; line-height: 1.3; }
.web-app-badge strong { display: block; font-size: 24px; line-height: 1.3; }
a:focus-visible { outline: 3px solid #00ffce; outline-offset: 4px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } }
