@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
em,
img,
strong,
sub,
sup,
b,
u,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
table,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
    font-size: 100%;

}

html {
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    width: 100%;
}

body {
    height: 100%;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    background: rgb(255, 255, 255);
    color: rgb(45, 45, 45);
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    outline: none;
    text-decoration: none;
    list-style: none;
}
.container_center{
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.content_box{
    max-height: calc(100% - 20px);
    overflow-y: auto;
    padding: 25px;
    border-radius: 5px;
    background: rgb(225, 242, 247);
    max-width: calc(100% - 20px);
    text-align: center;
    max-width: 400px;
        -webkit-box-shadow: 0 2px 30px 0 rgba(0,0,0,.08);
        box-shadow: 0 2px 30px 0 rgba(0,0,0,.08);
}

.content_box h1{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
}

.content_box p{
    font-size: 14px;
    font-weight: 300;
}

.content_box p:last-child{
    margin-bottom: 0px;
}

.content_box a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 400;
    color: rgb(255, 255, 255);
    height: 45px;
    width: 100%;
    max-width: 200px;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 0 auto;
    margin-bottom: 10px;
    background: -webkit-gradient(linear, right top, left top, from(rgb(255, 80, 80)), to(rgb(200, 100, 100)));
    background: linear-gradient(to left, rgb(255, 80, 80), rgb(200, 100, 100));
}

.link_box{
    margin-top: 20px;
}

.content_box a:last-child{
    margin-bottom: 0px;
}

.prefer_section{
    border-top: 1px solid rgb(45, 45, 45);
    margin-top: 20px;
    padding-top: 20px;
    text-align: left;
}

.prefer_section > p{
    font-size: 15px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 500;
}

.pref_block{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.1);
}

.icon_pref{
    font-size: 40px;
}

.text_pref{
    padding-top: 8px;
    padding-left: 5px
}

.text_pref h2{
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 4px;
}

