/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a {
    text-decoration: none;
    color: black;
}
img {
    mix-blend-mode: multiply;
}

body {
    font-family: Arial, sans-serif;
    background-color: #FFF;
}


.wrapper {
    max-width: 900px;
    margin: 0 auto;
}
.header {
    background-color: #f2f2f2;
    color: #fff;
    padding: 10px;
    border-radius: 50px 50px 0 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
}
.header__logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 10px;
}
.header__logo > img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.header__title {
    font-size: 24px;
    color: #000;
    font-weight: bold;
}
.main__title {
    margin: 20px 20px;
    font-size: 30px;
    color: #000;
    font-weight: bold;
    max-width: 250px;
}
.main__apk {
    padding: 20px 20px;
    max-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1A73E8;
    border-radius: 15px;
    margin: 0 auto;
    color: #FFF;
}
.mainList {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;

}
.mainList__item {
    display: flex;
    align-items: center;
    margin-left: 20px;
    max-width: 267px;
}
.mainList__item > img, .footer__link > img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.footer {
    border-top: 1px solid #ccc;
    background-color: #f2f2f2;
    padding: 20px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 0 0 50px 50px;
}