@charset "utf-8";
/* CSS Document */
.hero {
  display: flex;
  position: relative;
  width: 100%;
  height: 90vh;
  background-image: url("../images/music/Megaphone-with-'Coming-Soon'-Speech-Bubble-1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  object-position: 100% 100%;
}
.hero-title {
  display: flex;
  flex-flow: wrap;
  font-size: 4.0rem;
  line-height: 5rem;
  padding: 10px;
  margin: 30px 0 0 50px;
  color: #000;
   text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}
.hero-title2 {
  position: absolute;
  bottom: 15px;
  right: 15px;
  border-radius: 50%;
  background: #F37925;
  width: 300px;
  height: 300px;
  color: #000;
  font-size: 5.0rem;
  text-align: center;
  margin: 5px;
  line-height: 300px;
  transform: rotate(-10deg);
}

@media(max-width:960px) {
  .hero {
    background-image: url("../images/music/Megaphone-with-'Coming-Soon'-Speech-Bubble-s.jpg");
    background-size: 100%;
    background-position: bottom;
  }
  .hero-title2 {
    position: absolute;
    bottom: 0;
    border-radius: 50% 50% 0 0/100% 100% 0 0;
    background: #F37925;
    width: 300px;
    height: 150px;
    color: #000;
    font-size: 5.0rem;
    text-align: center;
    margin: 0 auto;
    left: 1px;
    line-height: 150px;
    transform: none;
  }
}