
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  @font-face {
    font-family: Paint;
    font-style: normal;
    src: url(../fonts/AkayaKanadaka-Regular.ttf);
  }
  
  #start h1 {
    font-family: Paint;
    color: #4e24af;
    font-size: 2.5rem;
  }
  
/* 
body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    background-color: #f5f5f5;
  } */


  body {
    background-image: url(../images/bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
  }
  


  #Layer_1 {
    position: absolute;
    pointer-events: none !important;
    width: 800px;
    height: 600px;
  }
  

  #start {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
  }
  
  #start-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  #start-button {
    display: flex;
    border: none;
    background: none;
  }
  
  #girl-painting {
    max-width: 500px;
  }
  
  #start-image {
    width: 80px;
    height: 80px;
  }
  
  /* #shapesSVG{
      transform: translate(-31px, -270px) scale(0.5);
  } */
  
  canvas:hover {
    cursor: url('../images/paintbrush.png'), wait;
  }
  
  canvas {
    border: 1px solid black;
    cursor: crosshair;
    background-color: #fff;
  
  }
  
  #size-control {
    margin: 10px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #select-color {
    display: flex;
    flex-direction: column;
    justify-content: center;
  align-items: center;
  }
  
  .controls {
    margin-bottom: 10px;
    font-family: Paint;
  }
  
  #size1,
  #size2,
  #size3 {
    border-radius: 50%;
  }
  
  #size1:hover,
  #size2:hover,
  #size3:hover {
    border-radius: 50%;
    box-shadow: 6px 12px 24px rgba(0, 0, 0, 0.8);
  }
  
  #size1 {
    width: 20px;
  }
  
  #size2 {
    width: 34px;
    border: 1px solid;
    padding: 2px;
  }
  
  #size3 {
    width: 46px;
  }
  
  
  .controls label {
    margin-right: 10px;
  }
  
  .color-palette {
    display: inline-block;
    margin: 20px;
    /* margin-right: 10px; */
  }
  
  .color-palette div {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 5px;
    border: 1px solid #000;
    cursor: pointer;
    border-radius: 50%;
    border: none;
  }
  
  .color-palette div:hover {
    box-shadow: 6px 12px 24px rgba(0, 0, 0, 0.8);
  }
  
  
  

  
  @media screen and (-webkit-min-device-pixel-ratio:0) {
    input[type='range'] {
      overflow: hidden;
      width: 80px;
      -webkit-appearance: none;
      background-color: #9a905d;
    }
  
    input[type='range']::-webkit-slider-runnable-track {
      height: 10px;
      -webkit-appearance: none;
      color: #13bba4;
      margin-top: -1px;
    }
  
    input[type='range']::-webkit-slider-thumb {
      width: 10px;
      -webkit-appearance: none;
      height: 10px;
      cursor: ew-resize;
      background: #434343;
      box-shadow: -80px 0 0 80px #43e5f7;
    }
  
  }
  
  /** FF*/
  input[type="range"]::-moz-range-progress {
    background-color: #43e5f7;
  }
  
  input[type="range"]::-moz-range-track {
    background-color: #9a905d;
  }
  
  /* IE*/
  input[type="range"]::-ms-fill-lower {
    background-color: #43e5f7;
  }
  
  input[type="range"]::-ms-fill-upper {
    background-color: #9a905d;
  }
  
  #saveCanvas,
  #clearCanvas {
    width: 100px;
    height: 40px;
    margin: 5px;
    border: none;
    background-color: antiquewhite;
    border-radius: 20px;
    font-family: Paint;
    font-size: 1.2rem;
  }
  
  #saveCanvas:hover {
    transform: rotate(-2deg);
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.3);
  }
  
  #clearCanvas:hover {
    transform: rotate(2deg);
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.3);
  }
  
  @media only screen and (max-width: 700px) {
    #girl-painting {
      max-width: 400px;
    }
  }
  
  @media only screen and (max-width: 500px) {
    #girl-painting {
      max-width: 300px;
    }
  }
  
  @media only screen and (max-width: 450px) {
    /* #start-images{
      flex-direction: column;
    } */
  }


  .clearBtn{
    display: flex;
    justify-content: center;
  }

