@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans&display=swap');

body {
  font-family: 'Nunito Sans', sans-serif;
  margin: 0;
  background: #f4f4f4;
  height: auto;
}

h1 {
  margin: 0;
  font-weight: 400;
  font-size: 2.6rem;
  text-transform: uppercase; 
}

h2 {
  margin: 0;
  font-weight: 400;
  font-size: 1.3rem;
  text-transform: capitalize;
}

img {
  display: block;
  #width: 100%;
}

iframe {
  display: block;
  width: 100%;
  height:400px;
}

main {
  max-width: 900px;
  margin: auto;
  box-shadow: 20px 0px 30px rgba(248, 248, 255, 1),-20px 0px 30px rgba(248, 248, 255, 1);
}

#singer {
  background: #fff;
}

#singer-image {
  background: url(images/ma1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 50vh;
  flex: 0 1 60vw;
  margin: 0;
}

#singer-text {
  display: flex;
  height: 50vh;
  flex: 0 1 40vw;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}

#singer-text h2 {
  color: #888;
}

@media (min-width: 500px) {
  #singer {
    display: flex;
    height: 100%;
  }
  #singer-image {
    height: 100vh;
  }
  #singer-text {
    height: 100vh;
  }
}

.btn {
  padding: 0.5rem 2rem;
  margin: 2rem 0 0;
  border: 2px #ccc solid;
  display: inline-block;
  border-radius: 0px;
  text-decoration: none;
  font-size: 1.5rem;
  background: #f4f4f4;
  color: #333;
  width: 150px;
  transition: background 500ms ease;
}

.btn:hover {
  background: #333;
  color: #fff;
}

@media (min-width: 700px) {
  .btn {
    padding: 1rem 3rem;
  }
}

#headline {
  padding: 1.5rem;
  background: #fff;
  color: #333;
  text-align: center;
}

#headline h2 {
  border: solid 2px #333;
  display: inline-block;
  padding: 0.5rem 2rem;
  width: 150px;
}

.signature {
  padding: 0.8rem;
  background: #f4f4f4;
  color: #333;
  text-align: center;
  border-bottom: solid 2px #333;
}

footer {
  padding: 2rem 1rem;
  margin: auto;
  text-align: center;
  color: #333;
}

footer h3 {
  margin-bottom: 0;
  font-size: 2rem;
}
