@font-face {
    font-family: 'Aileron';
    src: url('fonts/aileron-bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Aileron', sans-serif;
    background: #000000;
}

body {
    display: flex;
    flex-direction: column;
    background: #000000 url('images/background.webp') center/cover no-repeat fixed;
}

#content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-left: 10vw;
    padding-right: 5vw;
}

#content > div:first-child {
    flex: 0 0 33%;
    padding-top: 24px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

#content > div:last-child {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding-bottom: 20px;
}

#logo {
    width: 120px;
    height: 120px;
}

#heading {
    width: 70%;
    color: #ffffff;
    font-weight: bold;
    font-size: 2.4em;
    margin-bottom: 0.5em;
}

#subtitle {
    color: #fb607f;
    font-weight: bold;
    font-size: 1.5em;
    margin-bottom: 1em;
}

/* Mobile-specific styles */
@media only screen and (max-width: 767px) {
    #content {
        padding-right: 10vw;
    }

    #heading {
        font-size: 2.0em;
    }

    #subtitle {
        font-size: 1.5em;
    }
}

#stores {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 360px;
}

#stores img {
    flex: 0 0 40%;
    width: 40%;
    height: auto;
    margin-bottom: 1.5em;
}

#stores img:first-child {
    margin-right: 12px;
}

