* {
  box-sizing: border-box;
  }

  :root {
    --light-bg-color: antiquewhite;
    --dark-bg-color: #222;
    --light-text-color: #1f1f1f;
    --dark-text-color: #fff;
  }

@media (prefers-color-scheme: dark) {
  /* Styles for dark mode */
  body {
    background-color: var(--dark-bg-color);
    color: var(--dark-text-color);
  }

    /* Apply dark mode styles to other elements */
    a,
    h1,
    h2,
    h3,
    p {
      color: var(--dark-text-color);
    }
    
    /* Invert any icons or images for better visibility */
    .icon {
      filter: invert(100%);
    }
  }



.slidecontainer {
    margin: 0%;
    justify-content: space-around;
  }
  
  /* The slider itself */
  .slider {
    -webkit-appearance: none;  /* Override default CSS styles */
    appearance: none;
    width: 100%; /* Full-width */
    height: 25px; /* Specified height */
    background: #d3d3d3; /* Grey background */
    outline: none; /* Remove outline */
    opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: .2s; /* 0.2 seconds transition on hover */
    transition: opacity .2s;
    margin: 1ch;
    padding: 0%;
  }
  
  /* Mouse-over effects */
  .slider:hover {
    opacity: 1; /* Fully shown on mouse-over */
  }
  
  /* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
  .slider::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 25px; /* Set a specific slider handle width */
    height: 25px; /* Slider handle height */
    background: #04AA6D; /* Green background */
    cursor: pointer; /* Cursor on hover */
    border-radius: 20%;
  }
  
  .slider::-moz-range-thumb {
    width: 25px; /* Set a specific slider handle width */
    height: 10px; /* Slider handle height */
    background: #04AA6D; /* Green background */
    cursor: pointer; /* Cursor on hover */ 
    border-radius: 20%;
}

p { word-break: break-all;
  margin: 0
}



/* Create two unequal columns that floats next to each other */
.column {
float: left;
padding: 10px;
}

.left {
width: 25%;
}

.right {
width: 75%;
justify-content: center;
}

/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}

canvas{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%); 
    z-index: -1;              
}

