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



table.startListeTabel {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 800px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    table-layout: fixed;
}

table.startListeTabel:th {
    background-color: #009879;
    color: #ffffff;
    text-align: left;
}

table.startListeTabel thead tr {
    background-color: #009879;
    color: #ffffff;
    text-align: left;
}

table.startListeTabel td {
  padding-right: 5px;
}

table.startListeTabel tbody tr {
    border-bottom: 1px solid #dddddd;
    min-width: 20px;
    height: 40px;
    vertical-align: top;
}

table.tidspunkterTabel {
  border: 1px solid;
  border-collapse: collapse;
}

table.tidspunkterTabel th {
  border: 1px solid;
  background: #ddd;
}

table.tidspunkterTabel td {
  border: 1px solid;
}


tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

tbody tr:last-of-type {
    border-bottom: 1px solid #009879;
}

.mainBody {
  margin: auto;
  width: 50%;

}

p {
  font-size: 1.5em;
}

h1 {
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;

}

/* More boring button
button {
  background-color: red;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
}
*/

button {
  text-align: center;
  margin: auto;
  padding: auto;
  min-width: 130px;
  height: 40px;
  color: #fff;
  padding: 5px 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
  border-radius: 5px;
  border: none;
  background: #ef233c;
  box-shadow: 0 5px #d90429;
}

.pressedButton {
  background: #c4162c;
  color: #ddd;
}

button:hover {
  box-shadow: 0 3px #d90429;
  top: 1px;
}
button:active {
  box-shadow: 0 0 #d90429;
  top: 5px;
}

.buttonContainer {
  margin: 0;
  position: absolute;
  top:50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
