* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    margin-bottom: 100px;
}

header {
	background-color: black;
	height: 100px; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px; 
}

#brand {
    font-weight: bold;
    font-size: 22px;
    display: flex;
    align-items: center;
    img {
      height: 20%; width: 20%;
    }
}

ul {
    list-style: none;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
  
ul a {
    color: #B800C2;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul li {
    padding: 5px;
    margin-left: 10px;
}
  
ul li:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

@media only screen and (min-width: 600px) {
    header nav {
        margin: auto; 
    }
} 

h1 {
    color: #B800C2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h2 {
    color: #B800C2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h3 {
    color: #B800C2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}

p {
    color: #B800C2; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#content {
    display: block;
    align-items: center;
}

#content li {
    color: #B800C2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.center {
    display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.gallerycontainer {
    margin: auto !important;
display: block;
}

div.gallery {
    border: 1px solid #ccc;
  }
  
  div.gallery:hover {
    border: 1px solid #777;
  }
  
  div.gallery img {
    width: 75%;
    height: auto;
  }
  
  div.desc {
    padding: 15px;
    text-align: center;
  }
  
  * {
    box-sizing: border-box;
  }
  
  .responsive {
    padding: 0 6px;
    float: left;
    width: 24.99999%;
  }

  #stream {
    margin-left: 23%;
  }
  
  @media only screen and (max-width: 700px) {
    .responsive {
      width: 49.99999%;
      margin: 6px 0;
    }
  }
  
  @media only screen and (max-width: 500px) {
    .responsive {
      width: 100%;
    }

    header {
      background-color: black;
      height: 50px; 
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px; 
    }
  
    ul {
      margin-left: 23%;
    }

    #stream {
      margin: 0;

      #spotify {
        padding-left: 0px;
      }
    }

    #brand {
      img {
        height: 50%;
        width: 50%
      }
    }

  }
  
  .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }

  

