*{ margin: 0;
  padding: 0; 
  box-sizing: border-box;

}

.conteudo{
    background-image: url(../imagens/demoniosneve.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;    
    align-items: center;
    padding-top: 50px;
    
}

.texto{
  color: whitesmoke;
  text-align:center;
  background: rgba(26, 25, 25, 0.698);
  width: 60%;
  padding: 2%;
  font-size: 20px; 
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
 
}


.botao{    
    height: 40px;
    width: 120px;
    background-color: #e97634ef;
    border-radius: 10px;
    margin-top: 20px;
    border: none;
    cursor: pointer;
  }

  .botao:hover{
    background: #25b36c;
  }
 
 
  .rodape{    
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70px;
    position:relative;
    bottom:0;
    left:0;
    text-align: center;
    color: whitesmoke;
    
    
  }

  @media (max-width: 900px){
    .conteudo{
        text-align: center;
        display: flex;
        justify-content: space-around;
        flex-direction: column;
        height: 100vh;
        width: 100%;
        background-position: center;
        background-size: contain;    
        
        
    }

    .texto{ 
        font-size: 20px;
    }

    .rodape{
      font-size: 10px;
      color: whitesmoke
    }
  }


    @media (max-width: 700px){
      .conteudo{
        text-align: center;
        display: flex;
        justify-content: space-around;
        flex-direction: column;
        height: 100%;
        width: 100%;
        background-position: center;
        background-size: contain;    
        
        
    }

    .texto{ 
        font-size: 10px;
    }

    .rodape{
      font-size: 08px;
      color: whitesmoke
    }
  }
  @media (max-width: 320px){
    .conteudo{
      text-align: center;
      display: flex;
      justify-content: space-around;
      flex-direction: column;
      height: 100vh;
      width: 100%;
      background-position: center;
      background-size: cover;    
      
      
  }

  .texto{ 
      font-size: 10px;
  }

  .rodape{
    font-size: 08px;
    color: whitesmoke
  }
  }
