body {font-family: Arial, Helvetica, sans-serif;}

.logo {
  z-index: 1; 
  position: absolute; 
  padding-left: 1%; 
  padding-top: 0.5%; 
  width:10%
}

a {
  text-decoration: none;
}


div-palette-options {
  display: none;
}
h2 {
    margin: 1%;
    color: aliceblue;
}

h3 {
    margin: 0%;
    padding-bottom: 1%;
    color: aliceblue;
}

h5 {
    margin: 1%;
}

.center {
    display: flex;
    justify-content: center;
    margin-left: 20%;
    margin: 0%;
}

.hidden {
  display: none;
}

.div-layout {
    display: flex;
    justify-content: center;
    margin-left: 25%;
    width:50%;
    padding: 0%;
}


.canvas {
    margin-left:0%; 
    padding: 1%;
    width:50%;
    
}

.canvas-palette {
    margin-left:1%; 
    width:50%;
}

.boxbackground {
    background-color: dodgerblue;
}

.text {
    background-color: #f8f9f9;
    text-align: center;
    color: #000000;
    width: 80%;
    margin: 1%;
    justify-content: center;
    margin-left: 10%;
    display: flex;
    align-items: center;
}

.checkbox {
  border: none;
  color: rgb(0, 0, 0);
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 2px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.label {
  text-decoration: none;
  display: inline-block;
  text-align: center;
  margin: 2px 2px;
  padding-left: 0%;
  padding-top: 1%;
}

.button {
  background-color: dodgerblue;
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 2px 2px;
  padding: 1%;
  transition-duration: 0.4s;
  cursor: pointer;
}

.select {
  background-color: rgb(255, 255, 255);
  border: none;
  color: rgb(0, 0, 0);
  padding: 16px 32px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  margin: 2px 2px;
  padding: 1%;
  transition-duration: 0.4s;
  cursor: pointer;
  border-style: solid;
}

.button:hover {
  background-color: #94e1ff;
  color: white;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  font-size: 16px;
  width: 50%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

ul {
    list-style-type:circle;
    margin: 0;
    padding: 10pt;
    background-color: #ffffff;
  }
  
  li {
    float: none;
    padding: 4pt;
  }
  
  li a {
    display: block;
    color: white;
    text-align: center;
    padding: 16px;
    text-decoration: none;
  }

 
  input[type="file"] {
    display: block;
    margin: 1px;
  }

  .loader{
    display: block;
    position: relative;
    height: 12px;
    width: 100%;
    border: 1px solid dodgerblue;
    border-radius: 10px;
    overflow: hidden;
  }
  .loader::after {
    content: '';
    width: 100%;
    height: 100%;
    background: #FF3D00;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    animation: animloader 2s linear infinite;
  }
  
  @keyframes animloader {
    0% {
      left: 0;
      transform: translateX(-100%);
    }
    100% {
      left: 100%;
      transform: translateX(0%);
    }
  }
  