/* <p> element with default values */

p {
    display: block;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
}

/* <h1> to <h6> tags are used to define HTML headings. */

.h1
{ 
    display: block;
    font-size: 2em;
    margin-top: 0.67em;
    margin-bottom: 0.67em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

.h2
{
    display: block;
    font-size: 1.5em;
    line-height: 1.1em;
    margin-top: 0.83em;
    margin-bottom: 0.83em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

.h3
{ 
    display: block;
    font-size: 1.17em;
    line-height: 1.25em;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

.h4 
{ 
    display: block;
    margin-top: 1.33em;
    margin-bottom: 1.33em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

.h5
{ 
    display: block;
    font-size: .83em;
    margin-top: 1.67em;
    margin-bottom: 1.67em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

.h6 
{ 
    display: block;
    font-size: .67em;
    margin-top: 2.33em;
    margin-bottom: 2.33em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

/* <article> tag specifies independent, self-contained content. */

article 
{ 
    display: block;
}

/* <aside> tag defines some content aside from the content it is placed in. */

aside 
{ 
    display: block;
}

/* <blockquote> tag specifies a section that is quoted from another source. */

blockquote 
{
    display: block;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 40px;
    margin-right: 40px;
}

/* <code>	Defines a piece of computer code */

code 
{
    font-family: monospace;
}

/* <details> tag specifies additional details that the user can view or hide on demand. */

details 
{ 
    display: block;
}

/* <em>	Renders as emphasized text */

em,
.em,
i,
.i
{
    font-style: italic;
}

/* <figure> tag specifies self-contained content, like illustrations, diagrams, photos, code listings, etc. */

figure 
{ 
    display: block;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0px;
    margin-right: 0px;
}

figure.c
{
    margin: auto;
}

/* <figcaption> tag defines a caption for a <figure> element. */

figcaption 
{ 
    display: block;
}

/* <footer> element should contain information about its containing element. */

footer 
{ 
    display: block;
}

/* <header> element represents a container for introductory content or a set of navigational links. */

header 
{ 
    display: block;
}

/* <img> */

img
{
    display: block;
    max-width: 100%;
}

img.c
{
    margin: auto;
}

/* <input> tag specifies an input field where the user can enter data. */

input
{
    
}

/* <label> tag defines a label for an <input> element. */

label 
{
    cursor: default;
}

/* <li> tag defines a list item. */

li 
{
    display: list-item;
}

/* <ol> tag defines an ordered list. An ordered list can be numerical or alphabetical. */

ol 
{
    display: block;
    list-style-type: decimal;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
    padding-left: 30px;
}

/* <samp>	Defines sample output from a computer program */

samp
{ 
    font-family: monospace;
}

/* <small> tag defines smaller text (and other side comments). */

small,
.small
{ 
    font-size: smaller;
}

/* <strong>	Defines important text */

strong,
.strong,
b,
.b
{
    font-weight: bold;
}

/* <summary> tag defines a visible heading for the <details> element. The heading can be clicked to view/hide the details. */

summary 
{
    display: block;
}

/* <ul> tag defines an unordered (bulleted) list. */

ul
 { 
    display: block;
    list-style-type: disc;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
    padding-left: 30px;
}

/* <var>	Defines a variable */

var
{ 
    font-style: italic;
}

video
{
    max-width: 100%;
}