html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 100%;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  background-color: #000000;
  background-size: 400px;
  background-repeat: repeat;
  color: #ffffff;
  min-height: 100vh;
  margin: 10px;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

.logo {
  width: 320px;
}

a:hover, a.featured:hover {
  background-color: #060042;
  color: #ffffff;
}

a {
  display: block;
  max-width: 400px;
  margin: 0 auto 15px auto;
  padding: 15px 20px;
  font-size: 0.95rem;
  background-color: #060042;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 26px;
  text-decoration: none;
  -webkit-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}

a:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

a.featured {
  position: relative;
  background-color: #ffffff;
  color: #060042;
  font-weight: bold;
}

a.featured:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: 2px solid #060042;
  border-radius: 22px;
}

a.featured span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  font-style: italic;
  font-weight: normal;
}

h2 {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
  margin-top: 20px;
}

h2:first-of-type {
  margin-top: 10px;
}

.channels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 400px;
  margin: 0 auto;
}

.channels a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 5px 10px;
  margin-right: 10px;
  background-color: #ffffff;
  color: #060042;
  border: none;
  border-radius: 5px;
}

.channels a:last-child {
  margin-right: 0px;
}

.channels a:hover {
  text-decoration: underline;
}
/*# sourceMappingURL=style.css.map */