* {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
}

header {
    background-color: #02131D;
    padding: 24px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

main {
    padding: 0 10vw;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.article-title {
    margin: 0;
    padding: 0;
    margin-top: 48px;
    margin-bottom: 10px;
    font-size: 2rem;
}

.article-subtitle {
    font-size: 1.4rem;
    margin-top: 10px;
    margin-bottom: 4px;
}

.privacy-policy {
    margin-bottom: 10vh;
}

ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
}

ul>li {
    padding: 0 10px;
}

ol {
    margin: 2vh 0;
}

ol>li {
    margin: 4px 0 4px 48px;
}

nav {
    margin: 16px 0 0 0;
}

li>a {
    text-decoration: none;
    color: white;
}

.app-photos {
    display: flex;
    flex-direction: row;
    width: 80%;
    justify-content: center;
}

.ss {
    width: 20%;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.ss:not(.last-ss) {
    margin-right: 24px;
}

.download-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.download-area-title {
    font-size: 2rem;
    margin-top: 4vw;
    margin-bottom: 3vw;
    text-align: center;
}

.download-badges {
    margin-top: 3vw;
    margin-bottom: 10vh;
}

.download-badge {
    width: 240px;
}

.lbg {
    margin-left: 24px;
}

@media only screen and (max-width: 860px) {
    .ss {
        width: 32%;
    }
}

@media only screen and (max-width: 630px) {

    .app-photos {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        row-gap: 24px;
    }

    .download-badges {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .lbg {
        margin-left: 0px;
        margin-top: 16px;
    }
}