/* 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;
}


.offscreen_to_left {
    position: absolute;
    width: 400px;
    height: 400px;
    left: -500px;
    background: lightgray ;
}

.offscreen_to_left h2 {
    text-align: center;
    font-size: larger;
    color: bisque;
    background-color: black;
}
body {
    background-color:beige;
}

.my_list {
    margin-left: 20px;
    list-style-type: square;

}

#JSON_div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#JSON_div h1 {
    font-size: x-large;
}

.bullet_points{
    background-color: rgb(94, 94, 94);
    width: 250px;
    height: auto;

}

.bullet_points h2{
    background-color: darkslateblue;
    color: white;
}

.bullet_points li {
    color: white;
}

#my_ajax {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 500px;
}