@import url('https://fonts.googleapis.com/css?family=Raleway:400,700&display=swap');
*{
  box-sizing: border-box;
}
body {
  font-family: 'Raleway', sans-serif;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  border: 2px solid #ccc;
}

header h1 {
  text-transform: uppercase;
}

nav ul {
  list-style: none;
}

nav ul li {
  display: inline-block;
  padding: 10px 20px;
}

nav ul li a {
  text-decoration: none;
  color: #555;
}

section#banner {
  background-image: url('../img/jane.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 73vh;
}

footer p {
  padding: 10px;
  margin: 0;
  background-color: #f2f2f2;
  text-align: center;
}

/* about */

main#about {
  text-align: center;
}

main#about h2 {
  font-size: 30px;
}

main#about img {
  width: 450px;
  margin: 20px auto;
}

main#about p cite {
  display: block;
  font-size: 22px;
  font-weight: 700;
  font-style: normal;
  line-height: 40px;
}

section#concept,
section#songs{
  width: 900px;
  margin: 30px auto;
}

.duas-colunas > div{
  width: 50%;
  float: left;
}

.duas-colunas{
  overflow: hidden;
}
section#songs img {
  float: left;
  width: 100%;
}

section#songs ol li{
  padding: 10px 0 ;
}

section#songs ol li strong{
  color: orange;
}

#contact{

  margin-left: 300px;
  text-align: left;
  margin-right: 250px;


}

#h2Contact{
  font-size: 30px;
}

#h3Contact{
  font-size: 20px;

}

.pContact{
  line-height: 5px;
  margin-bottom: 20px;

}

.txt{
  width: 350px;
  margin-bottom: 10px;
  height: 20px;
}

.button{
  background-color: orange;
  color: white;
  margin: 20px 0px 30px 0px;
  border: none;
  transition: all 1.5s;
  cursor: pointer;
  text-align: center;
  border-radius: 4px;
  width: 80px;
  height: 30px;
}

.ulMusic{
  text-align: left;
}

.pMusic{
  font-size: 15px;
}

#txtarea{
  resize: vertical;
  height: 50px;
  max-height: 100px;
}



.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}