/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
 * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any styles
 * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
 * file per style scope.
 *


 */

body {
    font-family: "IBM Plex Sans";
    margin: 0;
    font-size: 18px;
}

article {
    min-height: 100vh;
    display: flex;
    flex-direction: column
}

header {
    padding: 15px;
    color: #3b3b3e;
    background-color: #fff;
    text-align: center;
}

.logo {
    width: 192px;
    height: 192px;
    display: block;
    margin: auto;
    margin-top: 15px;
    margin-bottom: 15px;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

header p {
    margin-bottom: 5px;
}

main {
    padding: 15px;
    color: #3b3b3e;
    flex: 1;
    background-color: #f8f9fa;
    text-align: center;
}

.store-container {
    display: grid;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 500px) {
    .store-container {
        grid-template-columns: auto;
    }
}

main .store-container section {
    background-color: #fff;
    border-radius: 5px;
    padding: 15px;
    text-align: center;
    box-shadow: 0px 4px 20px rgba(52, 70, 99, 0.15);
}

.rating {
    color: #969696;
}

main h2 {
    color: #08214B;
    margin-top: 15px;
    margin-bottom: 15px
}

.link img {
    height: 46px;
    margin: 15px;
}


footer {
    padding: 30px 15px;
    color: #fff;
    background-color: #002b71;
}

header > *,
main > *,
footer > * {
    max-width: 800px;
    margin: auto;
}

address {
    line-height: 2rem;
    font-style: normal;
    font-weight: 300;
}

.thin {
    font-weight: 200;
}

/*# sourceMappingURL=application.css-9f9cfacffcb4b771854aff59d9a0b348cab31720e71997cf302b51baae0bb606.map */
