html {
  box-sizing: border-box;
  font-size: 100%;
  margin: 0;
}
*, :after, :before {
  box-sizing: inherit
}
body {
  background-color: #0082c3;
  background-image: linear-gradient(#0082c3 2%, #fff 170%);
  color: #fff;
  min-height: 100vh;
  text-align: center;
  font-family: Raleway, sans-serif;
  margin: 0;
}
#linkliste {
  margin: 8px;
}
.logo {
  width: 120px
}
a.featured:hover, a:hover {
  background-color: none;
  text-decoration: underline;
}
a {
  display: block;
  max-width: 400px;
  margin: 0 auto 15px;
  padding: 15px 20px;
  font-size: .85rem;
  color: #fff;
  border: 2px solid #fff;
  text-decoration: none;
  transition: all .2s ease-in-out;
}
a.featured {
  position: relative;
  background-color: #fff;
  color: #060042;
  font-weight: 700
}
a.featured:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 2px solid #060042
}
h2 {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 2px;
}
.channels {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
}
.channels a {
  flex: 1;
  padding: 5px 10px;
  margin-right: 10px;
  background-color: #0082c3;
  border: none
}
.channels a:last-child {
  margin-right: 0
}
.channels a:hover {
  text-decoration: underline
}
#header-logo {
  background-color: #fff;
  height: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}