* {
  box-sizing: border-box;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

body {
    background-color: #FDAE83;
    background-color: white;
    font-family: 'Nobile', Helvetica, Arial, sans-serif;
    line-height: 1.5;
}

header {
  position: sticky;
  top: 0;
}

.band-logo {
  margin-top: 45%;
  padding-bottom:3%;
  width: 100%;
  height: auto;
  padding-left: 3%;
  padding-right: 3%;
}

.blog_base {
    margin: 15px;
    padding: 2% 3%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3), 0 6px 20px 0 rgba(0, 0, 0, 0.3);
    background-color: white;
    width: 95%;
  	height: auto;
}

.img-src {
  position: fixed;
  background-position: top;
  -webkit-background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-image:url(./images/cc_cover_no_logo.png);
}

.blurred-img {
  opacity: 0;
  background-image:url(./images/cc_cover_no_logo_blurred.png);
}

.social-icon {
  height: 50px;
  width: 50px;
}

.video-container {
    width: 100%;
    max-width: 820px;
    margin: auto;
    padding: 1rem 1.5rem;
    width: 100%;
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    /* border: 10px solid #34546e; */
    box-sizing: border-box;
    width: 100%;
}

blockquote p {
  font-size: 1.2rem;
}

blockquote b {
  font-size: 0.8rem;
}

.footer {
  color: white;
  text-align: right;
  font-size: small;
  margin-right: 3%;
}

@media screen and (min-width: 1024px ){
    .body{
      margin: auto;
      width: 80%;
    }
    .blog {
      flex: 30%;
    }
}
@media screen and (max-width: 1023px) {
    .row {
      flex-direction: column;
    }
}
