* {
  box-sizing: border-box;
}

body {
  background: url('/images/bg.jpg') no-repeat;
  background-size: cover;
  box-sizing: border-box;
  text-align: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

a,
a:hover {
  color: #fff;
}

.main {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.stream {
  padding: 20px;
}

.footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  text-align: left;
  border-top: solid 2px #fff;
  background-color: #ff9c00;
  color: #fff;
}

.footer span {
  font-size: 1.2em;
}

.footer img {
  height: 30px;
  margin-right: 10px;
}

@media (min-width: 721px) {
  .logo {
    width: auto;
    max-height: 60vh;
    margin: 10px 0 0 10px;
  }

  .stream {
    display: flex;
    flex-direction: column;
    width: 300px;
  }

  audio {
    width: auto;
  }

  .iframe {
    width: 400;
    height: 30;
    overflow: hidden;
    border: 0;
    margin: 0;
  }

  .aside {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 720px) {
  .container {
    padding-top: 20px;
    flex-direction: column;
  }

  .aside {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
  }

  .logo {
    width: 70%;
    margin: 20px;
  }

  audio {
    width: 80%;
  }

  .stream {
    width: 100%;
    display: inline-block;
    padding: 10px;
  }
}

@media (max-width: 320px) {
  .footer span {
    font-size: 0.9em;
  }
}

@media (max-height: 360px) {
  .container {
    padding-top: 20px;
    flex-direction: column;
  }

  .aside {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
  }

  .logo {
    width: auto;
    max-height: 70vh;
    margin: 20px;
  }

  .stream {
    width: auto;
    display: inline-block;
    padding: 10px;
  }

  audio {
    width: 300px;
  }
}
