/* 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;
}

/* ---------------- */

@import url('https://fonts.googleapis.com/css2?family=Cantarell:wght@700&family=Oxygen&display=swap');

body {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: url("../img/bg.jpg") no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

img {
    margin-top: 100px;
    min-width: 320px;
    width: 70%;
    max-width: 1000px;
}

blockquote {
    font-family: 'Oxygen', sans-serif;
    display: block;
    border-radius: 10px;
    text-align: justify;
    font-size: 4vmin;
    padding: 50px;
    margin: 1.5em 50px;
    position: relative;
    background-color: #ffffff;
    max-width: 800px;
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, .5);
}

@media screen and (min-width: 800px),(min-height: 800px) {
    blockquote {
        font-size: 3vmin;
    }
}

blockquote:before {
    content: '\201C';
    position: absolute;
    top: 0em;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #002FA7;
    width: 3rem;
    height: 2.5rem;
    font: 6rem/0.9em 'Oxygen', sans-serif;
    color: #ffffff;
    text-align: center;
}
blockquote:after {
    font-family: 'Cantarell', sans-serif;
    font-weight: 700;
    content: "\2013 \2003" attr(cite);
    display: block;
    text-align: right;
    font-size: 0.875em;
    color: #002FA7;
    margin-top: 0.5em;
}