@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Roboto", sans-serif;
  }
  

  .content {
    width: 90%;
    max-width: 900px;
    margin: auto;
    padding: 20px;
  }
  
  .text {
    margin-top: 3rem;
  }

  .image {
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 5rem;
    /* Altura inicial; o JavaScript ajustará isso */
    height: 0; 
  }


  body {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Padrão */
  }
  
  /* Desabilita o clique com o botão direito */
  body {
    oncontextmenu="return false;"
  }
  