* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #0f0f0f;
    color: #f1f1f1;
    min-height: 100vh;
}

img {
    display: block;
    border: 0;
    max-width: 100%;
    object-fit: contain;
    margin: 0;
    height: auto;
}

.layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.layout.layout--isArticle {
    margin: 30px auto;
    padding: 30px;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 960px;
    width: 100%;
}

.header {
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 100%;
    align-items: center;
    margin-bottom: 20px;
}

.section {
    width: 100%;
}

article {
    margin-bottom: 48px;
}

article img {
    margin-bottom: 20px;
}

.isCenter {
    text-align: center;
}

.isLarge {
    font-size: 1.75em;
}

h1 {
    font-size: 3.25em;
    margin-bottom: 38px;
}

h2 {
    font-size: 2.25em;
    margin-bottom: 20px;
    color: #9e9e9e;
}

h1 + h2 {
    padding-top: 0;
}

h2 a {
    color: #dc3a26;
    text-decoration: underline;
    transition: .2s;
}

h2 a:hover {
    color: #f0f0f0;
}

.logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px auto;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    user-select: none;
}

.download-btn {
    background-color: #dc3a26;
    color: white;
    padding: 16px 24px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.75em;
    transition: background-color 0.3s;
    user-select: none;
}

.download-btn:hover {
    background-color: #cc0000;
}

.download {
    margin-bottom: 45px;
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.policy {
    text-align: center;
    user-select: none;
    font-size: 80%;
    width: 100%;
}

.policy a {
    color: #dc3a26;
    transition: color .3s;
}

.policy a:hover {
    color: #cc0000;
}

h1 {
    margin: 0;
    padding: 0;
}

h2 {
    padding-top: 1em;
    margin-bottom: 20px;
}

p {
    margin: 0 0 1em 0;
}


.crumbs {
    display: flex;
    margin-bottom: 40px;
    user-select: none;
}

.crumbs-item {
    color: white;
    text-decoration: none;
    transition: color .3s;
}

.crumbs-item:hover {
    color: #cc0000;
}

p a {
    color: white;
    text-decoration: underline;
    transition: color .3s;
}

p a:hover {
    color: #cc0000;
}

footer {
    border-top: 1px dashed #333;
    padding-top: 30px;
    width: 100%;
}

@media(max-width: 768px) {

    .isLarge {
        font-size: 1.15em;
    }

    h1 {
        font-size: 2.25em;
        margin-bottom: 28px;
    }

    h2 {
        font-size: 1.25em;
        margin-bottom: 10px;
    }


    .download-btn {
        padding: 12px 20px;
        font-size: 1em;
    }
}
