.dk {
    font-weight: 900;
    font-size: 1.5em;
    display: inline-block;
    vertical-align: middle;
    padding-bottom: 5px;
}
.k {
    -moz-transform: scale(-1, 1);
    -webkit-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
    display: inline-block;
}

/* Photo Gallery */
.photos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  padding: 0;
  max-width: 1215px;
}
.photos img {
  display: block;
  float: left;
  flex: 0 0 auto;
    padding: 1px;
}
@media screen and (min-width: 1024px) {
  a.photos img {
    width: calc(100%/6);
    height: calc(100%/6);
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  a.photos img {
    width: calc(100%/4);
    height: calc(100%/4);
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  a.photos img {
    width: calc(100%/3);
    height: calc(100%/3);
  }
}
@media screen and (min-width: 321px) and (max-width: 480px) {
  a.photos img {
    width: calc(100%/2);
    height: calc(100%/2);
  }
}
@media screen  and (max-width: 320px) {
  a.photos img {
    width: 100%;
    height: 100%;
  }
}

/* Footer */
.footer {
    background: #999;
}
.footer a {
    color: #fff;
}
.footer a:hover {
    color: #fff;
}
.footer ul {
    list-style-type: none;
    padding: 0;
    line-height: 1.8em;
}