/* 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;
}
html {
    font-size: 14px;
}
body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    background: #FCFCFC;
    background: url("background.svg") center center no-repeat;
    background-size: cover;
    color: #050607;
}
.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
}
.container {
    border-radius: 2rem;
    padding: 4rem 4rem;
    width: 50%;
    @media screen and (max-width: 460px) {
        padding: 2rem 2rem;
        width: 80%;
    }
    -webkit-box-shadow: 8px 8px 32px 0px rgba(66, 68, 90, 0.26);
    -moz-box-shadow: 8px 8px 32px 0px rgba(66, 68, 90, 0.26);
    box-shadow: 8px 8px 32px 0px rgba(66, 68, 90, 0.26);
    text-align: center;
    background-color: rgba(255, 250, 236, 0.8);
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 150%;
    color: #1D3557;
}
h2 {
    line-height: 150%;
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-weight: 500;
    color: #1D3557;
}
p {
    font-size: 1.4rem;
    line-height: 1.5;
}
ul {
    margin-top: 1rem;
    list-style: none;
}
li {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    line-height: 1.5;
}
a {
    color: #1D3557;
}
img {
    margin-top: 0.4rem;
    margin-bottom: 2rem;
    width: 12rem;
    max-width: 80%;
}