html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: white;
}

/* Adicione este código ao seu arquivo CSS */
.scrollbar-hide {
    -ms-overflow-style: none;
    /* Para navegadores Internet Explorer e Edge */
    scrollbar-width: none;
    /* Para navegadores Firefox */
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
    /* Para navegadores baseados em Webkit (Chrome, Safari) */
}

.loader {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: inline-block;
    border-top: 3px solid #000;
    border-right: 3px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
  }
  
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  } 