/* CSS Reset */

/* 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-family: 'Outfit';

    box-sizing: border-box;
}

body {
    background-color: hsl(212, 45%, 89%);

    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center; 
}

main {
    background-color: hsl(0, 0%, 100%);

    width: 80%;
    min-width: 250px;
    max-width: 300px;

    border-radius: 15px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

img {
    width: 90%;
    border-radius: 15px;

    margin-top: 15px;
}

#content1 {
    font-size: 20px;
    font-weight: 700;

    width: 75%;
    margin: 25px 0 15px;

    text-align: center;

    line-height: 1.25;
}

#content2 {
    font-size: 15px;
    font-weight: 400;

    color: hsl(220, 15%, 55%);

    width: 85%;
    margin-bottom: 40px;

    text-align: center;
    
    line-height: 1.25;
}

@media screen and (min-width: 0px) and (max-width: 250px){
    html, body {
        overflow: scroll;
    }
} 