html {
  background: url(../img/background.png) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

body {
  margin: 0;
}

.bgSizeCover:before {
  content: "";
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background-color: rgba(255, 255, 255, 0.6);
}

.bgSizeCover2 {
  background-image: url(../img/background.png);
  background-size: cover;
  width: 100%;
  height: 100%;
  resize: both;
  overflow: scroll;
}

.bgSizeCover2:before {
  content: "";
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background-color: rgba(255, 255, 255, 0.6);
}

h1 {
  color: green;
  font-size: 5vw;
}

h2 {
  color: purple;
}

footer {
  position: relative;
  padding-top: 3px;
  padding-bottom: 5px;
  left: 0;
  bottom: 0;
  width: 100%;
  color: white;
  text-align: center;
  background-color: #333;
}

.socials {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  position: relative;
  width: 100%;
}

footer ul {
  text-align: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

footer ul li {
  display: inline-block;
  margin-left: 6px;
}

footer ul li img {
  height: 32px;
  width: 32px;
}

main {
  display: block;
  margin: 8px;
}

.releases {
  max-width: 540px; /* Originally 500px */
}

.container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}