
.label-logo {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;     /* Centers vertically */
  min-height: 100px;       /* Needs a height to see vertical centering */
  padding-bottom: 10px;
  padding-top: 10px;
  background-color: white
}

.parent-div {
  display: flex;
  justify-content: left; /* Centers horizontally */
  align-items: center;     /* Centers vertically */
  min-height: 75px;       /* Needs a height to see vertical centering */
  padding-left: 20px;
  background-color: rgb(187, 186, 186)
}
.parent-div-title {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;     /* Centers vertically */
  min-height: 20px;       /* Needs a height to see vertical centering */
  padding-bottom: 20px;
  padding-top: 20px;
  border-style: solid;
  background-color: rgb(187, 186, 186)
}
.release-title {
  display: grid;
  justify-content: center; /* Centers horizontally */
  background-color: white;
  border-left-style: solid;
  border-right-style: solid;
  border-bottom: solid;
}
.source-logo {
  float: left;
  width: 75%;
  backgrounbd-size: cover;
}
.indent {
  display: grid;
 justify-content: center;
 background-color: rgb(187, 186, 186);
 border-left-style: solid;
 border-right-style: solid;
 border-bottom-style: solid;
}