html, body {
    margin: unset;
    font-family: "neulis-sans", Arial, sans-serif;
    background-color: white;
    color: #434343;
    height: 100%;
    display: flex;
    flex-flow: column;
}

header {
    background-color: #434343;
    padding: 15px;
    color: white;
    flex: 1 0 auto;
}
header .notify {
    float: left;
}
header .me, header .shortenedme {
    float: right;
    margin-left: 15px;
}
header .shortenedme {
    display: none;
}
@media screen and (max-width: 465px) {
    header .me {
        display: none;
    }
}
@media screen and (max-width: 465px) and (min-width: 380px) {
    header .shortenedme {
        display: block;
    }
}
a {
    color: white;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 300ms;
    text-align: center;
}
a:hover {
    opacity: 0.7;
}

body > div {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    height: 100%;
    overflow: scroll;
    flex-flow: column;
}
div > main {
    width: calc(100% - 40px);
    max-width: 700px;
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    flex-flow: column;
}
div.heading {
    margin: unset;
    padding: 60px 40px 60px 40px;
}
div.heading.app {
    padding: 60px 40px 0 40px;
}

article {
    height: fit-content;
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    flex-flow: column;
    width: 100%;
    /*height: 100vh;*/
}
article.bold {
    background-color: rgba(170, 206, 247, 0.8);
    border-radius: 40px;
}
article.bold .statement {
    width: calc(100% - 80px);
    margin-top: 30px;
}
article.bold .statement h1 {
    background-color: white;
    margin: unset;
    padding: 10px;
    border-radius: 15px;
    width: fit-content;
}
span {
    font-weight: bold;
}

article.bold .icons-display {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(225, 225, 225, 0.8);
    border-radius: 1.1rem;
    margin: 30px 10px 30px 10px;
    padding: 5px 0 5px 0;
}
article.bold .icons-display img {
    width: calc(25% - 10px);
    max-width: 80px;
    padding: min(10px, 1%);
}

article.app img {
    width: calc(100% + 40px);
    max-width: 860px;
}
article.app p {
    text-align: center;
}
article.app li {
    padding: 10px;
}

article.app .footnote {
    margin: unset;
    font-size: small;
    text-align: right;
    transform: translateY(-45px);
    width: calc(100% - 60px);
    color: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 740px) {
    article.app .footnote {
        transform: translateY(-6vw);
        width: calc(100% - 7.5vw);
    }
}

footer {
    background-color: #434343;
    margin-top: 40px;
    width: calc(100% - 100px);
    max-width: 800px;
    padding: 50px 50px 100px 50px;
    border-radius: 40px 40px 0 0;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}

footer a {
    margin: 20px;
}

footer p {
    max-width: 600px;
}

footer .footnote {
    color: rgba(255, 255, 255, 0.6);
    margin: unset;
}
