@import url('https://fonts.googleapis.com/css?family=Work+Sans:400,600');
* {
	margin: 0;
  padding: 0;
  box-sizing: border-box;
	font-family: 'Work Sans', sans-serif;
}

body {
  min-height: 0;
  background: #222 no-repeat;
  background-size: border-box;
  background-position: center;
  color: white;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 100px;
  background: #55d6aa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 0;
}

.centerHead {
  position: fixed;
  top: 20;
  left: 0;
  width: 100%;
  text-align: center;
  align-items: center;
  z-index: 50;
}

div.abs {
  position: absolute;
  align-items: center;
  top: 80px;
  left: 0;
  width: 250px;
  height: 100px;
}

a:link {
  color:white;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color:white;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color:white;
  background-color: rgb(198, 159, 59);
  transition: 0.5s;
  text-decoration: none;
}

a:active {
  color:blue;
  background-color: rgb(198, 159, 59);
  text-decoration: none;
}

.table-container {
  display: flex;
  justify-content: center;
}

table, td, th {
  border: 1px solid;
  color: #55d6aa;
  align-items: center;
}

td {
	text-align: center
}

th, td {
  padding: 10px;
}

table {
  width: 50%;
  border-spacing: 30px;
  border-collapse: collapse;
  align-items: center;
}
