@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald-VariableFont_wght.ttf') format('truetype');
    font-display: swap;
    word-wrap: break-word;
}

* {
    font-family: 'Oswald';
}

header {
    background-color: black;
    color: white;
    padding-left: 20px;
    top: 0;
    display: flex;
}

header .logo {
    width: 75px;
    height: 75px;
    margin-right: 20px;
}

header .name {
    display: flex;
    align-items: center;
    font-size: 20px;
}

body {
    margin: 0;
    padding-bottom: 100px;
}

.content {
    margin: 40px auto;
    width: 900px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: normal;
    font-weight: normal;
}


.content-box {
    margin: 20px auto;
}

.store-button {
    display: inline-flex;
    gap: 10px;
}

.app-info-box {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: center;
    /* align-items: center; */
}

.app-info-box .app-logo {
    text-align: left;
    width: 256px;
    height: 256px;
}

.app-info-box .app-content {
    flex: 1;
    min-width: 300px;
    align-items: top;
    margin-left: 20px;
    margin-right: 20px;
}

.app-info-box .app-title {
    font-size: 40px;
    margin-bottom: 10px;
    text-align: left;
}

.app-info-box .app-description {
    display: block;
    text-align: left;
    font-weight: normal;
    font-family: sans-serif;
    font-size: 18px;
}

.text-box {
    text-align: left;
    font-weight: normal;
    font-size: 18px;
    word-wrap: break-word;
    font-family: sans-serif;
}

.text-box b,
strong {
    font-weight: bold;
    font-family: sans-serif;
}

.text-box p,
span,
h2,
h3,
ul,
li,
a {
    font-family: sans-serif;
}


@media (max-width: 940px) {
    .app-info-box {
        flex-direction: column;
        justify-content: left;
        align-items: center;
    }

    .app-info-box .app-content {
        margin-top: 20px;
        width: 100%;
        text-align: left;
        font-weight: normal;
        font-family: sans-serif;
        font-size: 18px;
    }

    .content {
        margin: 20px;
        margin-top: 40px;
        width: auto;
    }

    .store-button {
        align-items: center;
        width: 100%;
        justify-content: center;
    }

    .store-button img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 400px) {
    .store-button {
        flex-direction: column;
    }
}