


#welcome{
    text-align: center;
    font-size: 36px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 20px;
}

#canvas {
   border: 5px solid black;
   height: 500px;
   width: 900px;
   margin-bottom: 2em;
}

#action{
    text-align:center;
	display:flex;
	align-items:center;
}

#canvasdiv{
    margin-left:70px;
}

#settings{
    margin-left:60px;
    display: grid;
    grid-template-rows: auto auto auto auto;
    font-size:20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: rgb(199, 196, 151);
    border-radius: 10%;
}

.setitem{
    padding-left:50px;
    padding-right:50px;
}


input[type=range][orient=vertical] {
    writing-mode: vertical-lr;
    direction: rtl;
    appearance: slider-vertical;
    width: 16px;
    vertical-align: bottom;
    color: black;
}

#vol_slider{
    -webkit-appearance: none;  /* Override default CSS styles */
    appearance: none;
    background: #d3d3d3
}

#vol_slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: #04AA6D;
  cursor: pointer;
}




#button_container{
    margin-top: 20px;
    text-align:center;
}

.notebutton{
    color:white;
    background-color: cadetblue;
    border: none;
    border-radius: 10%;
    padding: 25px 25px;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 32px;
}

.notebutton:hover{
    background-color: rgb(90, 125, 125)
}

#noteinput{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    background-color: rgb(186, 219, 219);
    text-align: center;
}

#buttoninputtext{
    padding: 20px;
    font-size: 40px;
    margin-bottom:0px;
}

#submit{
    padding: 20px;
    font-size: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom:20px;
    border-radius: 15%;
    border: none;
    background-color: rgb(125, 123, 90);
    color: white;
}

#linewidth{
    -webkit-appearance: none;  /* Override default CSS styles */
    appearance: none;
    background: #d3d3d3
}

#linewidth::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background-color: brown;
  cursor: pointer;
}

#record{
    padding: 12px;
    font-size: 24px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-radius: 20%;
    border: none;
    background-color: white;
    color: black;
}

#color{
    margin-top: 20px;
}