body, html {
    margin: 0;
    padding: 0;
    height: 100%;
  }
  

  .container {
    width: 100%;
    text-align: center; 
    background-image: url('./img/fundo.jpg'); 
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 3rem;
  }

 

  .img {
    height: 25rem;
    width: auto;
    border-radius: 1rem;
  }
  


  

  .button {
    border: none;
    background-color: rgba(6, 6, 6, 0.607);
    border: 1px solid rgb(51, 186, 235);
    color: rgb(51, 186, 235);
    padding: .7rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .5s;
    margin: .5rem;
    margin-top: 2rem;
  }

  .button:hover {
    background-color: rgb(33, 33, 33);
  }

 