html {
    display: table;
    margin: auto;
}

body {
/*  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);*/
  background-image: url("../asset/image/vada.png");
  background-attachment: fixed;
  display: table-cell;
  vertical-align: middle;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  max-width: 1200px;
}

template, [hidden] {
  /* template inherits from .block which has `display: grid;` and we need to overwrite that */
  display: none !important;
}

div, main, section, nav, aside, header, footer, p,
pre, blockquote, figure, figcaption, ul, ol, li, dl, dt, dd, form, label, output,
button, svg, img, video, audio, iframe, object, input, select, textarea, progress,
table, code{
    display: block;
    margin: 1%;
    padding: 0;
    box-sizing: border-box;
}

b, i, a, span, strong, em, sub, sup, q, abbr, cite {
    display: inline;
}

h1 {
    display: block;
    margin: 1em 0 1em;
    orphans: 2;
    text-align: center;
    text-decoration: none;
    text-indent: 0;
    text-transform: none;
    font-size: 2.8em;
    font-weight: bold;
    max-width: 100%;
}
h2 {
    display: block;
    margin: 1em 0;
    orphans: 0;
    text-align: left;
    text-decoration: none;
    text-indent: 0;
    text-transform: none;
    font-size: 1.2em;
    font-weight: bold;
}
h3 {
  display: block;
    margin: 1em 0;
    orphans: 2;
    text-align: left;
    text-decoration: none;
    text-indent: 0;
    text-transform: none;
    font-size: 1.1em;
    font-weight: 500;
}

pre {
  font-family: Arial, Helvetica, sans-serif;
}

button, input, select, textarea {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.2;
}

input, select, textarea {
  border: 1px solid rgb(0, 0, 0);
  border-radius: 3px;
  padding: 3px;
}

select {
  background-color: transparent;
  padding: 0px 25px 0 5px;
  background: url(../../asset/image/arrow-down.svg) no-repeat right center;
  appearance: none;
  -webkit-appearance: none;
}

b {
  font-weight: 700;
}

i {
  font-style: italic;
}

em {
  font-style: normal;
}

small {
  font-size: small;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

q::before {
  content: open-quote;
}

q::after {
  content: close-quote;
}

svg {
  /* we can't have it because it will overwrite svgs without fill */
  /* fill: currentcolor; */
  width: 24px;
}

hr {
  border: 2px dotted;
  border-style: none none dotted;
  margin: 0 5%;
  text-align: center;
}

.block {
  display: grid;
  min-height: 24px;
}

hr.block {
  display: block;
  height: 0;
  min-height: 0;
}

table, table.block {
  display: table;
}

tfoot, tfoot.block {
  display: table-footer-group;
}

tbody, tbody.block {
  display: table-row-group;
}

tr, tr.block {
  display: table-row;
}

td, td.block,
th, th.block {
  display: table-cell;
}

colgroup, colgroup.block {
  display: table-column-group;
}

col, col.block {
  display: table-column;
}
