/* =========================
   CSS Reset
========================= */

/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1, h2, h3, h4, h5, h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Reset headings */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* Images */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Forms */
input,
button,
textarea,
select {
  font: inherit;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

a img:hover{
	opacity:0.8;
	filter:alpha(opacity=80);
}

/* Body defaults */
html {
	font-size: 14px;
}
body {
  min-height: 100vh;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

table th{
	text-align: center;
	font-weight: normal;
	padding:1rem 0;
	vertical-align: top;

}
table td{
	text-align: center;
	padding:1rem 0;
	vertical-align: top;
}

@media (max-width: 768px) {
}