canvas {
    cursor: crosshair;
    padding: 0;
    margin: auto;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
}
body {
    background-color: rgb(23, 23, 23);
}
h2 {
    font-size: xx-large;
    text-align: center;
    margin-bottom: 0;
    margin-top: 10px;
}
h3 {
    font-size: x-large;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 5px;
}
table {
    table-layout: fixed;
    width: 100%;
    height: 100%;
}
#SettingsUI {
    cursor: default;
    padding: 0;
    margin: auto;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    
    visibility: hidden;
    background-color: rgba(0, 0, 0, .5);
}
#Settings {
    padding: 0;
    margin: auto;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    max-width: 50%;
    max-height: 50%;

    background-color: white;
}
#SettingsTitle {
    user-select: none;
    margin: 10px 0px 0px 0px;
    text-align: center;
    font-size: 3rem;
}
#LineColorOption {
    margin-left: 2%;
    float: left;
}
#erase {
    width: 100%;
    height: 45px;
    margin: 0;
}
#EarseButton {
    width: 30%;
    height: 40px;
    border-radius: 999px;
    outline: none;
    margin-right: 15%;
    margin-bottom: 0px;
    float: right;
    font-size: large;
}
#PaintButton {
    width: 30%;
    border-radius: 999px;
    outline: none;
    height: 40px;
    margin-left: 15%;
    margin-bottom: 0px;
    float: left;
    font-size: large;
}
#colors {
    margin: 0;
    width: 100%;
    height: 190px;
}



#LineStyleOption {
    margin-top: 0;
    margin-right: 2%;
    float: right;
}
#PaintStyleOptions {
    margin: 0 auto 0 auto;
}
#DropdownPainting{
    margin: 0 auto 0 auto;
    align-items: center;
}
#EraseStyleOptions {
    margin: 80px auto 0 auto;
}





#BottomOptions {
    margin: 35% auto 0% auto;
    width: 90%;
    height: 15%;
}
#ClearScreen {
    cursor: pointer;
    float: left;
    margin-left: 7%;
    width: 30%;
    height: 80%;
    font-size: 150%;
    border-radius: 999px;
    outline: none;
}

#Exit {
    cursor: pointer;
    float: right;
    margin-right: 7%;
    width: 30%;
    height: 80%;
    font-size: 150%;
    border-radius: 999px;
    outline: none;
}
.options {
    width: 47%;
    height: 60%;
    border: 1px black solid;
}
.colorOption {
    width: 60px;
    height: 60px;
    margin: .5px 7px;
    border-radius: 50%;
    border: none;
    outline: none;
}
.colorOption:active {
    border: 1px rgba(0, 0, 0, 0.199) solid;
}
.row {
    width: fit-content;
    margin: auto;
}



















.dropbtn {
    background-color: #18bae2;
    margin: auto;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;  
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 110px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content p {
    color: black;
    padding: 1px 8px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content p:hover {background-color: #bebebe}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }
  .dropdown-content p:active {
      background-color: #8d8c8c;
  }
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .dropbtn {
    background-color: #1895a5;
  }