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

html, body {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    background-color: #f1751c;
    color: white;
}

.container, .logo, button, h1, .subtitle, .note {
  user-select: none;
  -webkit-user-select: none; /* For Safari and old Chrome */
  -moz-user-select: none;    /* For Firefox */
  -ms-user-select: none;     /* For Internet Explorer/Edge */
  pointer-events: auto;
}