/* fonts from  https://fonts.google.com/ */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&family=Zilla+Slab:wght@400;600&display=swap');

:root {
    --color1: rgb(0, 0, 0);
    --color2: rgb(0, 0, 0);
    --color3: rgb(0, 0, 0);
}



html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #000; 
  }
  


  body {
    color: #000000;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
  }
  
  #logo-canvas {
    display: block;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    background: #000;
    border: none;
    margin: 0;
    padding: 0;
  }
  
  .controls {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(24, 24, 24, 0.85);
    padding: 16px 0 20px 0;
    z-index: 10;
    border-top: 2px solid #222;
  }
  
  label {
    font-size: 1rem;
  } 






  html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #ffffff;
  }
  
  body {
    color: #000000;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
  }
  
  #logo-canvas {
    display: block;
    position: fixed;
    top: 0; left: 0;
    /* width and height are set by JS */
    z-index: 1;
    background: #000000;
    border: none;
    margin: 0;
    padding: 0;
  }
  
  .controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.85);
    padding: 16px 0 20px 0;
    z-index: 10;
    border-top: 2px solid #000000;
  }
  
  label {
    font-size: 1rem;
  }

  .controls {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(24, 24, 24, 0.85); /* Semi-transparent black background */
    padding: 16px 0 20px 0;
    z-index: 10;
    border-top: 2px solid #222;
  }
  
  label {
    font-size: 1rem;
    color: #FFFFFF; /* Make the text white */
  }
  
  input[type="file"] {
    color: #FFFFFF; /* Make the file input text white */
    background-color: transparent; /* Optional: Make the background transparent */
    border: 1px solid #FFFFFF; /* Optional: Add a white border */
    padding: 5px;
    font-size: 1rem;
  }