*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-image: url('./fundo.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
#container-pai{
    background-color: rgb(237, 227, 227);
    opacity:0.8 ;
    text-align: center;
    width: 760px;
    height: 500px;
    margin:70px auto;
    border-radius: 25px;
    padding: 20px;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.3);

}
header{
    display: flex;
    gap:0;
}
.blocoTitulo{
    width: 404px;
    height: 50px;
    border: 2px solid black;
    padding: 10px;
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.3);
    
}
nav{
    margin-top: 15px;
    width: 300px;
    margin-left: 10px;
    
}

a{
    text-decoration: none;
    color:rgb(0, 0, 0);
}
a:hover{
    color:aliceblue;
    background-color: darkorange;
}
.bloco1, .bloco2 {
    width: 300px;
    height: 70px;
    border: 1px solid black;
    padding: 15px;
    margin-left: 10px;
    background-color: orange;
    
     box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.3);
}
#container{
    display: flex;
    

}
.imgOne{
    width: 405px;
    height: 400px;
    border: 2px solid black;
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.3);
}
.headline{
    width: 250px;
    height: 400px;
    display: block;
    text-align: center;
    align-items: center;
    border: 1px solid rgb(0, 0, 0);
    margin-left: 40px;
     box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.3);
    
}
h2{
    width: 150px;
    height: 50px;
    margin-left: 50px;
    margin-bottom: 100px;
    margin-top: 100px;
    font-size: 20px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
h5{
    width: 150px;
    margin-left: 55px;
}
button{
    padding: 15px;
    margin-left: 25px;
    background-color: rgb(249, 134, 18);
    color:rgb(12, 12, 12);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-top: 20px;

}
#btn-lermais{
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.3);
    color:rgb(244, 176, 4);
    

}


.controles-musicais {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.controles-musicais button {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  background-color: #535251;
  border: none;
  padding: 5px 5px;
  border-radius: 10px;
  cursor: pointer;
  color: rgb(255, 255, 255);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: background-color 0.3s;
}

.controles-musicais button:hover {
  background-color: #9a9894;
}
@media screen and (max-width: 768px) {
  #container-pai {
    width: 95%;
    height: auto;
    margin: 30px auto;
    padding: 15px;
  }

  header {
    flex-direction: column;
    align-items: center;
  }

  .blocoTitulo {
    width: 90%;
    margin-bottom: 10px;
    font-size: 1.4rem;
  }

  nav {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .bloco1, .bloco2 {
    width: 90%;
    margin: 10px 0;
    font-size: 1rem;
  }

  #container {
    flex-direction: column;
    align-items: center;
  }

  .imgOne {
    width: 90%;
    height: auto;
    margin-bottom: 20px;
  }

  .imgOne img {
    width: 100%;
    height: auto;
  }

  .headline {
    width: 90%;
    height: 350px;
    margin-left: 0;
    padding: 15px;
  }

  h2 {
    width: auto;
    margin-top:20px;
    margin-left: 0;
    font-size: 1.3rem;
  }

  h5 {
    width: auto;
    margin: 10px auto;
    font-size: 1rem;
    text-align: center;
  }

  button {
    margin-left: 0;
    margin-top: 15px;
    width: 80%;
  }

  #btn-lermais {
    margin: 0 auto;
    display: block;
  }

  .controles-musicais {
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
  }

  .controles-musicais button {
    width: 80%;
    padding: 10px;
  }
}
