/*
  CSS reset
*/

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

/*
  CSS reset end
*/

* {
    font-family: Inter, sans-serif;
}

main {
    max-width: 840px;
    width: 100%;
    min-height: 100vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

h1 {
    margin: 48px 24px;
    margin-top: 96px;
    font-size: 96px;
    font-weight: 900;
}

h2 {
    margin: 48px 24px;
    font-size: 48px;
    font-weight: 900;
}

footer {
    margin: 24px;
    width: 100%;
    display: flex;
    justify-content: space-around;
}

#buy-btn {
    background-color: white;
    border: 6px solid rgb(59, 59, 59);
    border-radius: 12px;
    padding: 24px 12px;
    font-size: 48px;
    margin-bottom: 48px;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
    color: black;
}

p {
    font-size: 32px;
    padding: 0 24px;
}

ul {
    padding-bottom: 48px;
    padding-left: 24px;
    padding-right: 24px;
}

li {
    margin: 18px 0;
    font-size: 24px;
}

ul li {
    background-image: url(broom.svg);
    background-position: 0 0;
    background-size: 1.6rem 1.6rem;
    background-repeat: no-repeat;
    padding-left: 2rem;
    margin: 18px 0;
    font-size: 24px;
}


b {
    font-weight: 600;
}