*
{
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body, input {
  font-family: "Avenir Next", Avenir, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
}

body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: #fff;
  color: #111;
}

a {
  color: #000080;
  text-decoration: none;
  @include animation;
}

a:hover {
  text-decoration: underline;
  color: #111;
}
.header {
    background-color: #000080;
    height: 60px;
    width: 100%;
}
.header .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}
.header .wrapper h1, .header .wrapper a {
    display: inline-flex;
    align-items: center;
}
.header .wrapper h1 {
    font-size: 14px;
    padding: 0;
    margin: 0;
    color: #fff;
    font-weight: normal;
}
.header .wrapper .menu {
    display: flex;
    align-items: center;
}
.header .wrapper .menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 12px;
    margin: 0 3px;
    text-decoration: none;
    color: #dddfe2;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
}
.header .wrapper .menu a svg {
    fill: #dddfe2;
    margin: 2px 8px 0 0;
}
.header .wrapper .menu a:hover, .header .wrapper .menu a:active {
    color: #ebebec;
}
    margin-right: 0;
}
input {
    box-sizing: border-box;
    width: 100%;
    padding: 10px;
}
@font-face {
    font-family: EuroPlate;
    src: url(css/EuroPlate.ttf);
}
table {
    width: 100%;
    border: thin solid blue;
    border-collapse: collapse;
    padding: 5px;
}
th {
    text-align: center;
    border: thin solid blue;
    border-collapse: collapse;
    padding: 5px;
}
tr:nth-child(even) {
    background-color: #D6EEEE;
}
tr:hover {
    background-color: #AFFF80;
}
td {
    border: thin solid blue;
    border-collapse: collapse;
    padding: 5px;
    text-align: center;
}
.blink_me {
    color: #f00;
    animation: blinker 1s linear infinite;
}
@keyframes blinker {
    50% { opacity: 0; }
}
