@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');

@font-face {
  font-family: BebasNeueBold;
  src: url('../fonts/bebas_neue/bebasneue_bold-webfont.woff2') format('woff2'),
    url('../fonts/bebas_neue/bebasneue_bold-webfont.woff') format('woff');
  font-weight: bold;
}

html {
  box-sizing: border-box;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
:after,
:before {
  box-sizing: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: #101010;
  background-image: url('../img/bag.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  color: #fff;
  min-height: 100vh;
  text-align: center;
  font-family: 'Muli', sans-serif;
}

.logo {
  width: 120px;
  border-radius: 50%;
  margin: 40px auto 20px auto;
  border: 2px solid #d9fb00;
}

h1 {
  font-family: 'BebasNeueBold', sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 0.79;
  margin: 20px auto 40px auto;
}

a {
  display: block;
  max-width: 400px;
  margin: 0 auto 15px;
  padding: 10px 10px;
  font-size: 0.85rem;
  color: #fff;
  border: 2px solid #d9fb00;
  border-radius: 15px;
  text-decoration: none;
  background: rgb(255, 255, 255) transparent;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 12px 0 #7c41ff3d;
  transition: all 0.3s ease-in-out;
}

a:hover {
  border: 2px solid #d9fb00;
  background: rgb(0, 0, 0) transparent;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  transform: scale(1.1);
}

.card h2 {
  font-size: 1.5rem;
  margin: 10px auto 10px auto;
  text-transform: uppercase;
  font-weight: bold;
  font-family: 'BebasNeueBold', sans-serif;
  color: #000000;
}

a:hover h2,
a:hover p {
  color: #fff !important;
}

.card p {
  font-size: 1rem;
  margin: 10px auto 10px auto;
  padding: 0 5px;
  font-family: 'Muli', sans-serif;
  color: #000000;
}

.channels {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
}

h2.header {
  font-size: 1rem;
  text-transform: uppercase;
  margin: 20px auto 15px auto;
}

.channels a {
  flex: 1;
  display: block;
  max-width: 400px;
  margin: 0 auto 15px;
  padding: 0;
  font-size: 0.85rem;
  color: #fff;
  border: none;
  border-radius: 100%;
  text-decoration: none;
  background: none;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
}

.channels a img {
  max-width: 55px;
  border-radius: 5px;
  border: 2px solid #d9fb00;
}

.channels a:last-child {
  margin-right: 0;
}
.channels a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 780px) {
  /* For mobile phones: */
  body {
    background-image: url('../img/smarterGymBg.png');
  }
}
